@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');


*,
*::before,
*::after{
    box-sizing: border-box;
    -webkit-user-drag: none;
    outline: none;
}
body{
    overflow: hidden;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: black;
    justify-content: center;
    height: 100vh;
    font-family: electrolize;
}


.about a{
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: white;
    background-color: black;
    border-radius: 10px;
    padding: 5px 15px;
}

.episodes a, .contact a{
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: black;
    background-color: none;
    padding: 5px 15px;
}

.maincontainer{
    display: flex;
    padding-top: 15px;
    width: 98vw;    
    justify-content: center;
}

.logo{
    width: 61px;
    height: 50px;
    justify-content: center;
}

.menu{
    display: flex;
    background-color: white;
    width: 98vw;
    height: 50px;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    border-radius: 0 10px 10px 0;
}

.mid{
    display: flex;
    position: absolute;
    width: 98vw;
    height: 100vh;
    justify-content: center;
    top: 72px;
    padding-bottom: 5.3rem;
}

.main{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 0.5rem;
    justify-content: center;
    width:  98vw;

    grid-template-areas: 
    "grid-item1"
    "grid-item2"
    "grid-item3";
}

.grid-item1, .grid-item2, .grid-item3{
    border-radius: 10px;
}

.grid-item1{
    border: 1px solid #fcffeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    grid-area: grid-item1;
    padding: 1rem;
    color: #fcffeb;
}

.welcome{
    display: flex;
    height: 10px;
}

.grid-item1 p{
    font-size: 20px;
}

.grid-item2{
    border: 1px solid #fcffeb;
    display: flex;
    background-color: black;
    grid-area: grid-item2;
    color: #fcffeb;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
}

.grid-item2 p{
    font-size: 20px;
}

.mandr{
    color: #fcffeb;
    height: 10px;
}

.grid-item3{
    border: 1px solid #f8f32b;
    display: flex;
    align-items: center;
    background-color: black;
    padding: 1rem;
    grid-area: grid-item3;
    color: white;
}



.logo21{
    animation: changecolor 5.3s infinite linear;
}

.episodes a:hover, .about a:hover, .contact a:hover{
    color: white;
    background-color: black;
    border-radius: 10px;
    padding: 5px 15px;
}

    @media (max-width: 768px) {

    *,
    *::before,
    *::after{
        box-sizing: border-box;
        -webkit-user-drag: none;
        outline: none;
    }
    body{
        overflow:scroll;
        display: flex;
        margin: 0;
        padding: 0;
        background-color: none;
        justify-content: center;
        height: 100vh;
        }

    .main{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
        "grid-item1"
        "grid-item2"
        "grid-item3";
        
    }

    .grid-item1{
        grid-area: grid-item1;
        
    }

    .grid-item2{
        grid-area: grid-item2;
        
    }

    .grid-item3{
        grid-area: grid-item3;
        
    }

    /* pages */

    .menu{
        display: flex;
        background-color: white;
        width: 98vw;
        height: 50px;
        justify-content: space-evenly;
        align-items: center;
        gap: 0px;
        border-radius: 0 10px 10px 0;
    }

    .episodes a{
        text-decoration: none;
        font-weight: bold;
        font-size: 15px;
        border-radius: 10px;
        padding: 5px 15px;
    }
    
    .about a, .contact a{
        text-decoration: none;
        font-weight: bold;
        font-size: 15px;
        padding: 5px 15px;
    }

}

/* Style for the dropdown menu */
#video-select {
    font-family: electrolize;
    font-weight: 600;
    width: 13rem; /* Set the width of the dropdown */
    padding: 15px; /* Add some padding */
    font-size: 16px; /* Set the font size */
    border: none;
    border-radius: 10px; /* Add border radius */
    appearance: none; /* Remove default arrow in some browsers */
    -webkit-appearance: none; /* Remove default arrow in WebKit browsers */
    -moz-appearance: none; /* Remove default arrow in Firefox */
    background-color: #fbbc05; /* Set background color */
    position: relative; /* Position relative for dropdown arrow */
  }
  
  /* Style for dropdown arrow */
  .custom-select::after {
    content: '\25BC'; /* Unicode character for arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure the arrow is not clickable */
  }
  
  /* Style for selected option */
  .custom-select option:checked {
    background-color: #fff; /* Change background color of selected option */
  }

  @keyframes changecolor{

    0%, 94.3% {
        fill: white; /* Start with white 5 seconds */
    }
    94.4%, 96.2% {
        fill: red; /* Change to red */
    }

    96.3%, 98.1% {
        fill: orange; /* Change to orange */
    }

    98.2%, 100%{
        fill: green; /* Change to green */
    }
}
  