.header{
    margin-top: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    width: auto;
    height: 100px;
    font-family: "Bitcount Single";
    font-size: 40px;

}

body{margin: 0;}

.maincont{
    display: grid;
    grid-template-columns: auto auto auto;
}

.cont1{
    display: block;
    background-color: rgb(168, 122, 211);
    height: auto;
    width: auto;
    margin-right: 25%;
    font-family: "Bitcount Single";
    font-size: 20px;
    }

#textcont1{
    margin-right: 25%;
    margin-left: 10px;
}

.cont2{
    display: flex;
    border: 2px solid black;
    height: auto;
    width: auto;
    font-family: "Bitcount Single";
    font-size: 20px;
}

/*next code is copied from someone else lol
*/

#shadowBox {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.2);
    /* Black w/opacity/see-through */
    border: 3px solid;
}

.rainbow {
    text-align: center;
    text-decoration: underline;
    font-size: 40px;
    font-family: "Bitcount Single";
    letter-spacing: 10px;
    margin: 0;
    font-weight: 300;
    padding-top: 25px;
}
.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;
    }
}