body {
    display: flex;
    flex-direction: column;

    padding: 0;
    margin: 0;
}

header {
    padding: 0;
    margin: 0;

    width: 100vw;
}

.header {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #222222;
    color: whitesmoke;

    width: 100vw;
    height: 15vh;

    text-align: center;
    font-family: 'Staatliches', display;
    font-size: larger;

    padding: 0;
    margin: 0;
}

.header h1 {
    background-clip: text;
    -webkit-background-clip: text; 
    
    -webkit-text-fill-color: transparent; 
    
    background-image: url("../images/Galaxy.jpg");
    background-position-x: center;
    background-position-y: center;
    
    -webkit-text-stroke: .25px #ffffff;
}

.header img {
    max-width: 10vw;
    max-height: 10vh;

    margin: 0 5vw 0 5vw;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: url("../images/Galaxy.jpg");
    background-size: 100vw 100vh;
    background-position: center;
    color: whitesmoke;

    width: 100vw;
    min-height: 100vh;

    padding: 0;
    margin: 0;
}

.video {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    text-align: center;

    background-color: rgba(51, 51, 51, .75);
    
    border-bottom-left-radius: 3vw;
    border-bottom-right-radius: 3vw;
}

.video iframe {
    margin: 3vh 1vw 1vh 1vw;

    max-width: 75%;
}

.videoh3container {
    width: 50%;
    height: 100%;

    margin: 1%;

    display: grid;

    align-items: center;
    justify-items: center;

    font-family: 'Righteous', sans-serif;
}

.videoh3bg {
    grid-column: 1;
    grid-row: 1;

    width: 105%;
    height: 100%;

    background-color: #222222;

    opacity: 55%;

    align-items: center;

    border-radius: 3vw;
}

.videoh3 {
    grid-column: 1;
    grid-row: 1;

    z-index: 1;
}

#comments {
    display: flex;
    flex-direction: column;
    align-items: baseline;

    background-color: rgba(51, 51, 51, .55);

    padding: 0 5vw 5vh 5vw; 

    width: 90vw;

    text-align: left;
}

#comments h1 {
    font-family: 'Staatliches', display;
}

.coming-soon {
    font-family: 'Ubuntu Mono', display;
    text-align: center;
    width: 100%;
}

.comment {
    background-color: rgba(51, 51, 51, .55);

    border-radius: 15px;

    padding: 0 5% 0 5%;
    margin: 1vh 0 1vh 0;
    width: 90%;
}

.comment h3 {
    font-family: 'Righteous', sans-serif;
}

.comment p {
    font-family: 'Ubuntu Mono', display;
}

.comment h5 {
    font-family: 'Ubuntu Mono', display;
}

footer {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #222222;
    color: whitesmoke;

    width: 100vw;
    height: 10vh;

    text-align: center;
    font-family: 'Staatliches', display;
    font-size: larger;

    padding: 0;
    margin: 0;
}

footer a {
    text-decoration: none;
    color: rgba(245, 245, 245, 0.788);

    padding: 0 1vw 0 1vw;
}

#topButton {
    display: block; 
    position: fixed; 

    bottom: 20px;
    right: 30px;
    z-index: 99;
    padding: 15px;

    border: 1px whitesmoke solid;
    border-radius: 10px;

    outline: none;

    background-color: #222222;
    color: white;

    cursor: pointer;
    font-size: 18px;

    height: 5vh;
    width: 5vh;
}

#topButton:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

#topButton img {
    display:block;

    width: 100%;
    height: 100%;
}