@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Sans Pro", sans-serif;
}
.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  z-index: 2;
  transition: 1s;
  
  
  box-shadow: 5px 0 8px 2px rgb(20, 20, 20);
}
.showcase.active {
    right: 100px;
    
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 13px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-transform: uppercase;
    cursor: pointer;    
    color: inherit;
    text-decoration: inherit;

}
h2 a:hover {
    color: rgb(22, 196, 202);
}
/* socials */
.social{
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon {
    
    height: 1.27cm;
    width: 1.27cm;
   
    
}
.social li {
    list-style: none;
}
.social li a {
    display: inline-block;
    filter: invert(1);
    margin-right: 20px;
    transform: scale(0.5);
    transition: 0.5s;

}
.social li a:hover {
    transform: scale(1) translateY(-15px);
}

/* toggles */
.toggle {
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: url(images/menu.png);
  filter: invert(1);  
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
  cursor: pointer;
  
}
.toggle.active {
  width: 60px;
  height: 60px;
  background: url(images/1549612.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  cursor: pointer;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}



.text {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.text h2 {
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
    
}
.text h3 {
    font-size: 3em;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}
.text p {
    font-size: 1.3em;
    margin: 20px 0;
    font-weight: 300;
    max-width: 500px;
}

/* link */
.text a {
    display: inline-block;
    font-size: 1em;
    background: white;
    padding: 10px 30px;
    text-decoration: none;
    color: black;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s;
} 
.text a:hover {
    letter-spacing: 5px;
}



.menu {
    position: fixed;
    background: url(images/crop.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu ul {
    text-align: center;
    position: relative;
    list-style: none;
    height: 100%;

}
.menu ul li {
    position: relative;
    
    padding-top: 100%;
}
.menu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-shadow: 5px 3px 13px rgb(0, 0, 0);

}
/* contact information */

.contact-box {
    width: 500px;
    background-color: rgba(133, 127, 127, 0.281);
    box-shadow: 0px 3px 13px rgb(162 0 255 / 49%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
form {
    margin: 35px;
}
.input-field {
    width: 400px;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}
.textarea-field {
    height: 150px;
    padding-top: 10px;
}
.btn {
    border-radius: 20px;
    color: rgb(243, 243, 243);
    margin-top: 18px;
    padding: 10px;
    background-color: #1f2c21;
    font-size: 12px;
    border: none;
    cursor: pointer;
} 
.btn:hover {
    transform: scale(1.1);
    color: rgb(22, 196, 202);
}

/*  */
.menu ul li a:hover {
    transform: scale(1.1);
    color: rgb(22, 196, 202);
}
.menu a.donate {
    position: absolute;
    bottom: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-shadow: 5px 3px 13px rgb(0, 0, 0);
}
.menu a.donate:hover {
    transform: scale(1.1);
    color: rgb(22, 196, 202);
}
/* Stream Page */
.StreamContainer {
    width: 78%;
    position: relative;
    padding-bottom: 56.24%;

}
.strum {
    width: 100%;
    height: 80%;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
}
.ChatContainer {
    width: 22%;
    height: 0px;
    position: relative;
    padding-bottom: 56.250%;

}
.chat {
    width: 100%;
    height: 80%;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;

}
@media (max-width:1500px) {
    .showcase,.showcase header {
        padding: 40px
    }

    .text h2 {
        font-size: 3em
    }

    .text h3 {
        font-size: 2em
    }
    .menu ul li a {
        font-size: 14px;
    }
}
@media (max-height:900px){
    .contact-box {
        overflow-y: scroll;
    }
    .menu ul {
        overflow: auto;
    }
}
