* {
    font-family: "Inter", sans-serif;
}

body {
    animation: colorBgChange 25s infinite;
}
.content {
    margin: 5%;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(0, 76, 104);
}

.content h3 {
    color: rgb(1, 117, 156);
    font-weight: 500;
}

a {
    color: black;
    text-decoration: none;
}

.block {
    margin: 3rem 0;
}
@keyframes colorBgChange {
    0% {
        background-color: rgb(253, 232, 199);
    }
    20% {
        background-color: rgb(249, 217, 234);
    }
    40% {
        background-color: rgb(184, 239, 255);
    }
    60% {
        background-color: rgb(255, 233, 196);
    }
    80% {
        background-color: rgb(255, 216, 153);
    }
    100% {
        background-color: rgb(253, 232, 199);
    }
}


@keyframes colorChange {
    0% {
        background-color: rgb(17, 77, 129);
    }
    25% {
        background-color: rgb(7, 128, 128);
    }
    50% {
        background-color: rgb(90, 107, 10);
    }
    75% {
        background-color: rgb(7, 128, 128);
    }
    100% {
        background-color: rgb(17, 77, 129);
    }
}

@keyframes drizzleButton {
    0% {
        transform: translateX(-5px);
    }
    25% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }
}

#magic {
    animation: colorChange 5s infinite;
    padding: 0.5rem 1rem;
    border-radius: 5%;
    border: 0;
    border-color: rgb(255, 49, 49);

    cursor: pointer;
    transition: background-color 0.3s ease;
    color: rgb(255, 255, 255);
    font-size: large;
}

#magic:hover {
    background-color: rgb(0, 123, 255);
    animation: drizzleButton 0.5s infinite;
}

button {
    margin: 1rem 0;
}
form {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

textarea {
    padding: 0.5rem;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 25px;
    font-size: 1rem;
    resize: vertical;
    width: 500px;
    padding-left: 15px;
    padding-right: 15px;
}

input[type="text"] {
    width: 500px;
    height: 2rem;
    font-size: 1.25rem;  
    border: 1px solid rgb(200, 200, 200);
    border-radius: 13px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 600px) {
    textarea, input[type="text"] {
        width: 300px;
    }
}

button[type="submit"], #showPano {
    padding: 0.5rem 1rem;
    border-radius: 5%;
    border: 0;
    cursor: pointer;
    background-color: rgb(238, 254, 255);
    transition: background-color 0.3s ease;
    color: rgb(7, 56, 88);
    font-size: large;
}

button[type="submit"]:hover, #showPano:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}


iframe {
    width: 100%;
    height: 700px;
    border: 0;
    border-radius: 0px;
    margin-top: 1rem;
}

.cat {
    position: fixed;
    animation: catFall 2s linear;
    font-size: 2em;
}

@keyframes catFall {
    0% {
        top: -50px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}
@keyframes grow {
0% {
    transform: translate(-50%, -50%) scale(1);
}
100% {
    transform: translate(-50%, -50%) scale(2);
}
}
