59 lines
931 B
CSS
59 lines
931 B
CSS
body, html {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-family: "Pridi", sans-serif; /* Use sans-serif fallback */
|
|
background-color: #4A628A;
|
|
}
|
|
|
|
h4, h2, h1{
|
|
margin: 0;
|
|
}
|
|
|
|
.container{
|
|
height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|
|
|
|
.title{
|
|
font-size: 48px;
|
|
font-weight: 500;
|
|
letter-spacing: -1px;
|
|
color: white;
|
|
}
|
|
|
|
img{
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
p{
|
|
color: white;
|
|
}
|
|
|
|
.loading-section{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.spinner {
|
|
margin-bottom: 8px;
|
|
width: 15px;
|
|
height: 15px;
|
|
border: 3px solid #f3f3f3;
|
|
border-top: 3px solid #2196F3;
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
} |