
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    --dark: #1b1b1b;
    --light: #fbfbfb;
    --card-bg: #f0f0f0;
    --body-bg: #252525;
}
body{
    font-family: monospace, "Anonymous Pro";
    font-size: 12px;
    background-color: var(--body-bg);
    margin: 0;
}
.text-center{
    text-align: center;
}

.dflex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}

.justify-content-center{
    justify-content: center;
}
.justify-content-end{
    justify-content: end;
}
.align-items-center{
    align-items: center;
}

.main{
    width: 100%;
    max-width: 1920;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

footer{
    width: 100%;
    height: 10rem;
    background-color: var(--dark);
}
.title{
    background-color: var(--dark);
    color: var(--light);
    display: flex;
    justify-content: center;
    text-align: center;
}

h1, h2, h3, h4{
   text-transform: uppercase;
   font-weight: 900;
    
}
.logo{

}
.icon{
    background-size: contain;
    width: 20px;
    height:20px;
    background-repeat: no-repeat;
    display: inline-block;
    background-position: bottom;
}
.icon-cog{
    background-image: url("../images/cogicon.png");
}
.icon-twitch{
    background-image: url("../images/twitchlogo.png");
    height: 30px;
    width: 30px;
}
.icon-twitter{
    background-image: url("../images/twitterlogo.png");
    height: 30px;
    width: 30px;
}

.icon-bracket{
    background-image: url("../images/bracketicon.png");
    width: 40px;
}
.icon-calendar{
    background-image: url("../images/calendaricon.png");

}
.icon-external-link{
    background-image: url("../images/linkicon.png");

}
.icon-hover{

}
.icon-hover:hover{

    transform: scale(1.3);
    transition-duration: 0.3s;
}


.roster-card{
    gap: 1rem;
    background-color:  transparent;
    width: 26rem;
    padding: 1rem 0 2rem 1rem;
    border-radius: 0.1rem;
}


.text-light{
    color: var(--light);
}



.profile{
    background-image: url("../images/profile_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    height: 4rem;
    width: 24rem;
    padding: 0.25rem;
    padding-left: 1rem;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    border-radius: 1px solid var(--light);
}

.profile-name{
    width: 7rem;
    max-width: 11rem;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--light);
    font-size: 1.5rem;
    text-transform: uppercase;
    flex-grow: 1;
}
.profile-socials{
    justify-self: end;
    gap: 1rem;
width: 5rem;
    justify-content: flex-end;
}
.profile-icon{
height: 3rem;
width: 3rem;
}
.schedule{

}
#twitch-embed {
    flex-grow: 1;
}
#twitch-embed > iframe{
    width:  100%;  
    max-width: 1000px;
    min-width: 600px;
    height: 700px;
    

}
.embeds{
flex-wrap: wrap;
}

.embeds > div {
   
}

.card {
    padding: 1rem 2rem 2rem 2rem;
    max-width: 30rem;
    height: 15rem;
    background-color: var(--card-bg);
    border-radius: 0.1rem;
    box-shadow: 0 0  0.2em rgba(255, 255, 255, 0.3);
    flex-grow: 1;
    position: relative;
}


.card  li {
    margin:  0.2rem 0;
    font-weight: 500;
}

.card > .icon{
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}
small{
    font-size: 0.8em;    
}
.schedule-img{
    width: 600px;
}
.flex-shring{
    flex-shrink: 1;
}


.winner-card{
   height: auto;
}
.winner{
    width: 100%;
    height: auto;
}

.bracket{
    min-width: 400px;
flex-grow: 1;
}
.bracket > iframe{
    width: 100%;
    height: 400px;
    max-width: 1000px;
  
  
}
.mt-4{
    margin-top: 4rem;
}
.w-100{
width: 100%;
}

.gap-2{
  gap: 2rem  
}
