@import url('https://fonts.googleapis.com/css2?family=Notable&family=Oswald:wght@200..700&display=swap');

body{
    margin: 0;
    font-family: "Oswald", sans-serif;
}

header{
    background-color: red;
    font-family: "Oswald", sans-serif;
}

.buttonIco{
  height:25px;
}

.important{
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  background-color: #d40000;
  color: #eeff00;
  font-size: 17px;
  border:solid 0px;
  transition: all 0.2s;
  cursor: pointer;
}

.important:hover{
  box-shadow: 0px 5px 7px 0px rgb(175, 175, 175);
}

.important:active{
  box-shadow: 0px 2px 5px 0px rgb(175, 175, 175);
}

.important-dark{
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  background-color: #d40000;
  color: #eeff00;
  font-size: 17px;
  border:solid 0px;
  transition: all 0.2s;
  cursor: pointer;
}

.important-dark:hover{
  background-color: #940000;

}



.link{
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  background-color: #ffffff;
  color: #a50000;
  font-size: 17px;
  border:solid 0px;
  transition: all 0.2s;
  cursor: pointer;
}

.txt{
  border: solid 2px red;
  padding: 5px;
  border-radius: 7px;
  outline: none;
  font-size: 17px;
  margin-bottom: 10px;
  color: #000000;
}



.container{
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px silver;
  min-width: 290px;
  margin: 10px;
  display: inline-block;
}

.MPlay{
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px silver;
  margin: 10px;
}


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #d40000;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 10px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #eeff00;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #e5ff0093;
  }
  
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }



  .box {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  
  .box .row {
  }
  
  .box .row.header {
    flex: 0 1 auto;
    /* The above is shorthand for:
    flex-grow: 0,
    flex-shrink: 1,
    flex-basis: auto
    */
  }
  
  .box .row.content {
    flex: 1 1 auto;
  }
  
  .box .row.footer {
    flex: 0 1 40px;
  }


.SocialScroll::-webkit-scrollbar{
  height: 0px;
}