body {
    background-image: url('../image/bg.png');
    background-color: #fff;
    background-size: 150px;
    animation: backgroundanimation 10s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: wiiu, sans-serif;
    color: #575757;
    text-shadow: 2px 2px 2px #ccc;
    height: 200vh;
}
@font-face {
    font-family: wiiu;
    src: url('../font/FOT-RodinNTLG Pro DB.otf') format('woff');
}
    @keyframes backgroundanimation {
        from {
            background-position: 0 0;
        }

        to {
            background-position: 150px -150px;
        }
    }
.first-header {
    margin-top: 5vw;
    margin-bottom: 5vw;
    font-size: 2.3vw;
}
    .first-header b {
        font-weight: bold;
    }
.select-console {
    border-radius: 10%;
    opacity: 0.8;
    box-shadow: 0px 0px 20px #ccc;
    width: 20vw;
    transition: transform 0.2s ease-in-out;
}

.select-console:hover {
    transform: scale(1.05);
}

.top-header {
    position: fixed;
    z-index: 9999;
    background-image: linear-gradient(180deg, #00aeff, #0062ff);
    opacity: 0.6;
    height: 5vh;
    width: 75vw;
    padding-left: 1vw;
    padding-right: 1vw;
    border-radius: 1vw;
    display: flex;
    box-shadow: 0px 0px 20px #ccc;
}

.top-header button {
    height: inherit;
    width: 15%;
    border: none;
    background-image: inherit;
    color: #fff;
    cursor: pointer;
    filter: brightness(1s);
    transition: 0.2s ease-in-out;
    overflow: hidden;
}

.top-header button img {
    width: 100%;
    max-width: 100px;
    object-fit: cover;
    overflow: hidden;
    height: auto;
}

.top-header button:hover {
    filter: brightness(1.5);
}

.video-wrapper {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vid {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: #000;
}

#vidtext {
    margin-top: 10px;
    color: var(--text-gray);
    text-shadow: 1px 1px white;
    font-size: 18px;
}

iframe {
    width: 100%;
    height: 100vh;
    border: none;
    position: absolute;
}

#audiobutton {
    position: absolute;
}

#hidden {
    opacity: 0;
}

.start {
    width: 250vw;
    height: 250vw;
    opacity: 0.5;
    background-color: black;
    border: none;
    position: relative;
    bottom: 50px;
}
