:root{
    --player-width: 1280px;
    --player-height: 720px;
}

.inter-default{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
html{
    margin: none;
    padding: none;
    max-width: 100%;
}
body{
    background-color: black;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    color: white;
}
.player-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: none;
    margin-top: 60px;
    margin-bottom: 20px;
}
#player{
    display: none;
}
#splash{
    width: 1300px;
    height: 740px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: none;
}
.image-container{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.splash-image{
    max-height: 80%;
    margin-left: 20px;
    margin-right: 20px;
}
.splash-text-container{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.splash-text{
    color: white;
    font-size: 2em;
    text-align: center;
}
.twitch-border{
    border: solid #9146FF 10px;
    border-radius: 4px;
}   
#twitch-embed{
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule-link{
    color: white;
    text-align: center;
    height: 45%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-link{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: white;
    text-align: center;
    width: 100%;
    height: 70%;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
}
.site-link:hover{
    background-color: #626568;
    color: white;
}
.link-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: centerS;
}
.link-panel{
    height: 120px;
    width: var(--player-width);
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.link-image{
    max-width: 100px;
    margin-left: 20px;
    margin-right: 20px;
}

@media only screen and (orientation: portrait){
    .player-container{
        max-width: 100%;
    }
    .schedule-link{
        width: 30%;
        height: 70%;
    }
}