@import url('https://fonts.googleapis.com/css2?family=Birthstone+Bounce:wght@400;500&display=swap');

body,
html {
    padding: 0;
    margin: 0;
}

body {
    background: linear-gradient(-45deg, rgb(195 176 137 / 4%), rgb(195 176 137 / 2%), rgb(195 176 137 / 10%), rgb(195 176 137 / 5%), transparent);
    font-family: "Birthstone Bounce", cursive;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.logo img {
    width: 450px;
    max-width: 90%;
}

.logo h1 {
    font-family: "Electrolize";
    margin-bottom: 0;
    font-size: 75px;
    margin-top: 5px;
    color: #03a4ce;
    animation: color-change 4s infinite;
}
.logo h2 {
    font-size: 60px;
}
@keyframes color-change {
    0% {
        color: #045193;
        transform: translateY(0);
    }

    50% {
        color: #03a4ce;
        transform: translateY(-5px);
    }

    100% {
        color: #045193;
        transform: translateY(0);
    }
}

@media (max-width:575px) {
    .logo h1 {
        font-size: 65px;
    }
    .logo h2 {
        font-size: 40px;
    }
}