diff --git a/index.css b/index.css index 07ba4e0..5250304 100644 --- a/index.css +++ b/index.css @@ -1,10 +1,47 @@ +body { + display: flex; + align-items: center; + justify-content: center; + height: 70vh; +} + +h1 { + text-align: center; +} + .card { /*Card.js에서 사용*/ width: 80px; height: 100px; border-radius: 3px; + background-color: orange; + border: none; + box-shadow: 0px 15px 8px -10px gray; + color: white; + font-weight: bolder; } #cards { display: flex; gap: 10px; + padding: 15px; + padding-top: 20px; + padding-bottom: 20px; + border-radius: 10px; + width: 350px; + background-color: rgb(255, 200, 3); + position: relative; } + +#contents { + text-align: center; +} + +#RestartBtn { + position: relative; + top: -80px; + left: 163px; + border-radius: 3px; + background-color: rgb(238, 230, 216); + border: none; + height: 25px; +} \ No newline at end of file diff --git a/index.html b/index.html index 1664d39..65bf3d2 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,10 @@