diff --git a/style.css b/style.css new file mode 100644 index 0000000..511d470 --- /dev/null +++ b/style.css @@ -0,0 +1,64 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap'); + +body { + background-color: pink; + font-family: 'Roboto', sans-serif; + margin: 0px; + +} + +nav { + display: grid; + background-color: white; + box-sizing: border-box; + height: 100px; + place-items: center; + +} + +.nav-center { + display: flex; + justify-content: space-around; + align-items: center; + width: 90vw; +} + +.nav-left { + display: flex; + justify-content: space-between; + align-items: center; + width: 6vw; +} + +main { + display: grid; + place-items: center; +} + +.container { + display: block; + text-align: center; + justify-content: space-between; + align-items: center; +} + +.container h2 { + background-color: black; + color: white; + border-radius: 10px; + padding: 20px; +} +.btn { + background-color: transparent; + border: solid black; + border-radius: 10px; +} + +.btn:hover { + background-color: black; + color: white; +} + +.container span { + color: #007FFF; +}