/* Sidebar */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

body{
  background: #130514;
}

.background{
  background-size: cover;
  background-image: url(./bg.svg);
  width: 100vw;
  height: 100vh;
}

.background2{
  background-size: cover;
  background-image: url(./bg2.svg);
  width: 100vw;
  height: 100vh;
}

#myUL {
  padding: 20px 0 10px 10px;
  border: 5px solid #92278F;
  border-left:none;
  border-radius: 0 20px 20px 0;
  width: 12vw;
  transition: 0.5s;
  overflow: hidden;
  overflow-y:scroll;
  margin-top: 5vh;
  height: 80vh;
  display: flex;
  flex-direction: column;
}

#myUL::-webkit-scrollbar {
  display: none;
}

#myUL li {
  list-style: none;
  padding: 15px;
  padding-right: 0;
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

}

#myUL{
  width: 12vw;
}

#myUL li:hover {
  transition: 0s;
  background: #130514;
  opacity: 0.8;
}

#myUL li.active:before {
  content: '';
  position: absolute;
  top:-20px;
  right: 0px;
  width: 20px;
  height:20px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 10px 10px 0 #92278F;
}

#myUL li.active:after {
  content: '';
  position: absolute;
  bottom:-20px;
  right: 0px;
  width: 20px;
  height:20px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 10px -10px 0 #92278F;
}

#myUL li.active {
  background: #92278F;
  opacity: 1 !important;
}

#myUL:hover {
  width: 300px;
}

#myInput {
    background-color: #130514;
    opacity: 0.8;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px ;
    border: 1px solid #92278F;
    border-right: none;
    border-radius: 20px 0px 0px 20px;
    margin-bottom: 20px;
  }

  input:focus,
  select:focus,
  textarea:focus,
  button:focus {
      outline: none;
  }
  input, select, textarea{
    color: #ffffff;
}

/* Contenedores */

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-left: 12px;
    margin-right: 12px;
}

#logo{
    height: 15%;
    margin-bottom: 20px;
}
#myUL p{
  align-self: center;
  color:white;
  margin-bottom:none;
}

.sidebar {
  position: absolute;
  top:0;
  }

.window{
  background-color: #2F343D;
  border-radius: 20px;
  border: 5px solid #92278F;
  padding: 4vw;
  color: white;
  justify-content: center;
  margin-top: 5vh;
  width: 50%;
  max-height: 80vh;
}

.content{
    display: flex;
}

li a {
  white-space: nowrap;
}

#imagemain{
  width: 100%;
  height: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
  object-fit: contain;
}

#link{
  color: white;
}

.grow{
  transition: 1s ease;
  }
  
.grow:hover{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
transition: 1s ease;
}

.rotate{
  transition: 2s ease;
  }
  
.rotate:hover{
-webkit-transform: rotateZ(180deg);
-ms-transform: rotateZ(360deg);
transform: rotateZ(360deg);
transition: 2s ease;
}

.big-container{
  width: 88vw;
  right: 0;
  position: absolute;
  display: flex;
  align-content: center;
  justify-content:center;
}

.scroller {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .window{
    width: 80%;
    height: 80vh;
    margin-top: 5vh;
    margin-right:0 ;
  }

  #myUL{
    width: 20vw;
    margin-top: 5vh;
  }

  .footer{
    left:0;
    right:0;
    width: 100%;
  }
  .grow:hover{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 1s ease;
    }
}

.btn{
  color:white;
  background-color: #92278F;
  border:none;
  padding: 15px;
  border-radius: 20px;
}
.btn:hover{
  color: white;
  background-color: #AA2DA8;
}

#discord{
  bottom: 0;
  align-self: center;
  margin-right: 10px;
  margin-left: 10px;
}

.footer{
  display: flex;
  flex-direction: row;
  width: 88vw;
  right: 0;
  position: absolute;
  align-items: center;
  justify-content: center;
  bottom: 0;
  height: 10vh;

}

.inline{
  color: #92278F;;
}
.inline:hover{
  color: #AA2DA8;
}