body {
    background: url(background.jpg) repeat;
    animation: fade-in 2s ease forwards;
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    animation: beat 5s infinite;
}

.beat {
    height: 100vh;

    animation: beat 5s infinite;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    width: 20%;
    height: 0;
    padding-top: 20%;
    background: url(assets/Hiraya\ Palma\ Study\ 1\ \(black\).png) no-repeat center center;
    background-size: contain;
}

@keyframes beat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .logo {
        width: 80%;
        padding-top: 80%;
    }
}