@ -1,5 +1,8 @@
@ import url ( 'https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap' ) ;
body {
body {
background-color : # 03183a ;
background-color : # 03183a ;
font-family : "Fredorka" , sans-serif ;
margin : 0 ;
margin : 0 ;
}
}
@ -72,9 +75,8 @@ body{
}
}
. overlay {
# overlay-rules {
background-color : black ;
background-color : rgb ( 0 , 0 , 0 , 0 . 5 ) ;
opacity : 0 . 5 ;
height : 100 % ;
height : 100 % ;
width : 100 % ;
width : 100 % ;
position : absolute ;
position : absolute ;
@ -84,8 +86,36 @@ body{
align-items : center ;
align-items : center ;
justify-content : center ;
justify-content : center ;
}
}
. overlay-container {
# overlay-rules > . overlay-container {
height : min-content ;
padding : 2em ;
border-radius : 20px ;
opacity : 1 ;
background-color : white ;
background-color : white ;
width : 40vw ;
width : 40vw ;
height : 20vh ;
}
. button {
border : none ;
padding : 0 . 6em 0 . 8em ;
border-radius : 10px ;
}
. button . is-white {
background-color : white ;
transition : 0 . 2s ease-in-out ;
}
. button . is-white : hover {
background-color : rgb ( 241 , 241 , 241 ) ;
transition : 0 . 2s ease-in-out ;
}
. button . is-red {
background-color : rgb ( 228 , 97 , 97 ) ;
transition : 0 . 2s ease-in-out ;
color : white ;
}
. button . is-red : hover {
background-color : rgb ( 209 , 88 , 88 ) ;
transition : 0 . 2s ease-in-out ;
}
h1 , p {
margin-top : 0 ;
}
}