* {
    padding: 0;
    margin: 0;

    color: rgb(0, 0, 0);
    font-family: "gothambook";
}

div {
    justify-content: center;
}

body {
    align-content: center;
    justify-content: center;
}

#topbar {
    margin-top: 80px;
}

#header {
    display: flex;
    margin-bottom: 70px;
}

#logo {
    width: 60%;
    max-width: 596px;
    animation: elementFadeIn ease 2s;
}

#video_container {
    display: flex;
    animation: elementFadeIn ease 1s;
    flex-direction: column;
    height: 450px;
    overflow: hidden;
    margin: 0 0px 30px 0px;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 0px;
    /* width: 80%; */

    /* margin: 0px 12vw 50px 12vw;
    height: 45vw;
    position: relative; */
}

.videoThumbContainer {
    width: 600px;
    height: 150px;
    overflow: hidden;
}

.videothumb {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.videoTitle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 350%);
    color: white;
    font-size: 1em;
    opacity: 50%;
    font-weight: 800;
    text-transform: uppercase;
    display: none;
}

.playButton {
    position: absolute;
    z-index: 1;
    opacity: 20%;
    left: 50%;
    width: 70px;
    transform: translate(-50%, 50%);
}

/* #thumb_container {
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
} */

/* #video_thumb {
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
} */

/* #play_container{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: left;
    align-items: flex-end;
} */

/* #play_button {
    width: 50px;
    opacity: 90%;
    margin: 0 0 30px 30px;
} */

/* #play_container:hover #play_button {
    opacity: 40%;
    transition: all 0.2s ease;
} */

/* #video_embed {
    width: 100%;
    height: 100%;
} */

/* .hidden {
    display: none;
} */

button {
    background-color: black;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    margin-bottom: 20px;
    animation: elementFadeIn ease 2s;
}

button:hover {
    opacity: 70%;
    color: white;
    /* filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.288)); */
    transition: all .2s ease;
}

#social_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 50px 0 50px;
    animation: elementFadeIn ease 2s;
}

div .socials {
    height: 60px;
    margin-bottom: 10px;
    margin-left: 2px;
    margin-right: 2px;
}

img .socials {
    object-fit: contain;
}

.socials:hover {
    opacity: 70%;
    transition: all .2s ease;
}

.container {
    display: grid;
    border: 2px blue;
    column-gap: 50px;
    row-gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    place-items: center;
    place-content: center;
    grid-auto-flow: row;
    margin: 50px 12vw 100px 12vw;
    animation: elementFadeIn ease 4s;
}

p {
    color: white;
}


.tracks:hover {
    opacity: 80%;
    transition: all .2s ease;
}

.bottom_info {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    text-decoration: none;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 70%;
    transition: all .2s ease;
    color: rgb(7, 95, 167);
}

/* ------------------------------ ANIMATIONS ------------------------------ */

@keyframes elementFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ------------------------------ BREAKPOINTS ------------------------------ */
@media only screen and (max-width: 1380px) {
    .container {
      grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 1040px) {
    .container {
      grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 700px) {
    .container {
      grid-template-columns: 1fr;
    }
    .videoThumbContainer {
        width: 400px;
    }
}

@media only screen and (max-width: 500px) {

    .videoThumbContainer {
        width: 250px;
    }
}