@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
    font-size: 16px;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    font-family: "Roboto", serif;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 500px;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-name: logo;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
}

.container h1 {
    margin-top: 1rem;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-name: logo;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
}

@keyframes logo {
    50% {
        scale: 1.04;
    }
    100% {
        scale: 1;
    }
}

@media (max-width:550px) {
    .container img {
        width: 370px;
    }
}

@media (max-width:450px) {
    .container img {
        width: 300px;
    }
}
