@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=Bungee&family=Playwrite+DK+Uloopet:wght@100..400&family=Story+Script&display=swap');


header {
    border-bottom: 10px groove rgb(0, 158, 53);
}

header img {
    max-height: 10%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(20px 20px 4px rgb(0, 125, 0));
}

.mobileView {
    display: none;
}

html {
    background-image: url("images/bck.webp");
    background-size: 24.5%;
}

.disc {
    height: 45vh;
    display: block;
    margin: 0 auto;
}

body {  
    width: 65%;
    margin: 0 auto;
    background-color:rgb(61, 255, 61);
    filter: drop-shadow(20px 20px 4px #975300);
}

main {
    padding-top: 1px;
    font-family: "Bitcount Grid Double", system-ui;
    display: flex;
    justify-content: center;
}

video {
    border: 6px inset orange;
}


main div.textB {
    text-align: center;
}

main div.textB h2 {
    color: green;
}

main img {
    height: 200px;
}

#sepText {
    font-family: "Bungee", sans-serif;
    text-align: center;
}

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

.textB a:hover {
    cursor: text;
}

footer {
    border-top: 10px groove rgb(0, 158, 53);;
    text-align: center;
    padding-top: 1px;
    padding-bottom: 1%;
    height: 100%;
    font-family: "Bungee", sans-serif;
}

@media only screen and (max-width: 720px) {
    header img {
        width: 70%;
    }
}


@media only screen and (max-width: 600px) {
    html {
    background-color:rgb(61, 255, 61);
    }

    .textB {
        display: none;
    }

    main {
        display: block;
        text-align: center;
    }

    main img {
        display: inline-block;
    }

    .mobileView {
        display: inline-block;
    }

}