@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
body {
    height: 100vh;
    width: 100vw;
    background: #fff;
    margin: 0;
    padding: 0;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.fade-in-text {
    opacity: 0;
    margin-top: 2rem;
    font-size: 2rem;
    color: #333;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    animation: fadeInText 2s ease-in forwards;
    animation-delay: 2s;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}
.fade-in-logo {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
