@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");
}

* {
    margin: 5px;
}

body {
    background-color: rgb(22, 22, 22);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

h3 {
    font-family: 'house', 'Montserrat';
    font-weight: 100;
    font-size: 21pt;
}

audio {
    margin-bottom: 20px;
}

header {
    margin: 20px;
}

#theHeader {
    margin-bottom: 30px;
}

@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;
}