49 lines
929 B
CSS
49 lines
929 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@300;400;700&display=swap');
|
|
*{
|
|
box-sizing: border-box;
|
|
}
|
|
body{
|
|
background-image: url(image.jpg);
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 100vh;
|
|
font-family: 'Reem Kufi', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 0;
|
|
}
|
|
|
|
h1{
|
|
font-size: 3rem;
|
|
margin-top: -10rem;
|
|
font-weight: normal;
|
|
margin-top: 5rem;
|
|
font-family: 'Reem Kufi', sans-serif;
|
|
color: #ffbc3b;
|
|
}
|
|
.countdown-container{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.big-text{
|
|
font-weight: bold;
|
|
font-size: 6rem;
|
|
line-height: 1;
|
|
margin: 0 2rem;
|
|
color: #1a1a37;
|
|
}
|
|
.countdown-el {
|
|
text-align: center;
|
|
color: #1a1a37;
|
|
}
|
|
.countdown-el span{
|
|
font-size: 1.5rem;
|
|
}
|