/*Igual con este, a pesar de que prácticamente le dediqué medio día a ambos*/
body {
  background: #000000;
  margin: 0;
  padding: 0;
}

/** Si estás confundido con algunas propiedades, juega este juego http://flexboxfroggy.com/ , aprenderás un par de cosas **/
.container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* transform: translate(50%,0px); */
  padding-top: 14px;
  padding-bottom: 5px;
}

#logo{
  display:flex;
  flex-direction:row;
  justify-content: center;
  width:82px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0);
  -webkit-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  -moz-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  -o-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  transition: width 0.6s cubic-bezier(.47,0,.74,.71);
}

#logo:hover {
  width:229px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0);
}

.icons {
	display: flex;
  flex-direction: row;
	justify-content: space-between;
  align-items: center;
  width:0%;
  overflow:hidden;
	max-height:70%;
	max-width:150px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0);
  -webkit-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  -moz-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  -o-transition: width 0.6s cubic-bezier(.47,0,.74,.71);
  transition: width 0.6s cubic-bezier(.47,0,.74,.71);
}

#logo:hover > .icons{
  width:100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0);
}

#facebook {
	padding-left: 8px;
	padding-right: 5px;
}

#twitter {
	padding-left: 3px;
	padding-right: 3px;
}

#discord {
	padding-left: 5px;
	padding-right: 5px;
}

#paypal {
	padding-left: 5px;
	padding-right: 5px;
}

#salsa {
  position:absolute;
  right: 0;
  bottom:5px;
  height:80px;
  width:40px;
  cursor: pointer;
  border:none;
  outline:none;
}

p {
  display:flex;
  justify-content: stretch;
  margin: 0 auto;
  max-width: 100%;
  text-align:center;
  padding-top: 10px;
  padding-bottom:10px;
  color:white;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
}

#root{
  z-index: 3;
}

#logo2 {
	height: 3em;
}
#element {
	height:3em;
}

#info {
  display: flex;
  flex-direction: column;
}

#info .row {
  display: flex;
  flex-direction: row;
}

#info .row > div:first-child {
  width: 96px;
}

#info .row > div:last-child {
  flex: 1;
  border-left: 1px solid white;
  padding-left: 42px;
  text-decoration: none;
}

.modal{
  position:absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height:100%;
  width:100%;
}

.button{
  background-color: #FFF;
}

.modal-background{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  background-color: black;
  opacity:0.9;
}

.box{
  padding:100px;
  background-color: #000;
  z-index:1;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease-in-out;
}

.fade-enter, .fade-leave-to{
  opacity:0;
}

.modal-content{
  color:white;
  font-family: 'Open Sans', serif;
}

#videoContainer {
  flex: 1;
  padding: 8px;
  text-align: center;
}

video#loli {
  max-width: 100%;
  max-height: calc(100vh - 72px);
  height: 100%;
}
