@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,300&display=swap');
@font-face {
    font-family: 'house';
    src: url("HouseMovements.otf") format("opentype");
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(22, 22, 22);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    align-items: center;
}
header img {
    margin-top: 10px;
    width: 250px;
}
#alsobouncy {
    position: fixed;
    top: 70px;
    right: 20%;
    animation: boing 1.5s ease-in-out 0s infinite;
}
@media screen and (max-width: 600px) {
    #alsobouncy {
        display: none;
    }
}
#bouncy {
    color: yellow;
    transform: rotate(30deg);
}
@keyframes boing {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.rainbow {
    text-align: center;
    text-decoration: underline;
    font-size: 32px;
    letter-spacing: 3px;
}
.rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

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

.button {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
    border-style: none;
    /* width: 100px;
    height: 30px; */
    padding: 5px 10px;
    font-size: 13pt;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
}

#joinmsg {
    margin-top: 100px;
}
#discordthing {
    /* margin-top: 20px; */
    margin-bottom: 20px;
    width: 80%;
    max-width: 500px;
}