@import url("https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:900");
html {
  display: grid;
  min-height: 100%;
}

body {

    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #000000;
    color: #FFFFFF;
}

.container {
  position: fixed;
  width: 98%;
  height: 98vh;
  font-family: "open-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
 
  overflow: hidden;
}


header {
  width: 100%;
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  flex-direction: column;
  flex-wrap: no-wrap;
  align-items: center;
}
.logo {
    display: block;
    width: 100%;
    height: 100px;
   background-image: url(../img/idgafTitle.png); 
   background-position-y: center;
    margin: 0px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.headlines {
  width: 80%;
}
.headlines p {
  font-size: 0.9rem;
}
.headlines p strong {
  font-size: 1.5rem;
}
.container p {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
.containerLeft {
  width: 49%;
  float: left;
  height: 98vh;
  background-color: rgba(255,255,255,0);
  box-sizing: border-box;
  padding: 10px;
  overflow: scroll;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

ul {
  display: block;
  margin: 0 auto 50px auto;
  list-style-type: none;
  padding: 0px;
  width: 60%;
}

ul span {
  font-size: 1.3rem;
  font-weight: 800;
}
ul li {
  font-size: 0.8rem;
}
 ul li strong {
  font-size: 2rem;
 }
ul hr {
  width: 100%;
}
ul li a {
  background-color: #52aab6;
  display: inline-block;
  width: auto;
  padding: 5px 30px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 800;
  border-radius: 5px;
}
ul li a:hover {
  background-color: #000000;
  border: solid 1px #52aab6;
  color: #52aab6;
  transition: 0.5s;
  box-sizing: border-box;
}
.horaWrapper {
  display: flex;
  width: 80%;
  height: auto;
}
.fechaWrapper {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border: solid 0.5px #FFFFFF;
}
.fechaWrapper p {
  text-align: center;
  padding: 0px;
  margin: 0px;
  font-size: 1rem;
}
.containerRight {
  width: 49%;
  height: 100vh;
  float: right;
  background-image: url(../img/sofia-reyes.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  overflow: hidden;
}
.btn-presave {
  background-color: #52aab6;
  width: auto;
  padding: 5px 30px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 800;
  border-radius: 5px;
  margin: 0px auto;
}
.btn-presave:hover {
  background-color: #000000;
  border: solid 1px #52aab6;
  color: #52aab6;
  transition: 0.5s;
  box-sizing: border-box;
}

@media only screen and (max-width: 1080px) {
  ul {
    width: 80%;
  }
  .headlines {
    width: 90%;
  }
}

@media only screen and (max-width: 920px) {
  .containerRight {
    height: 120vh;
  }
}

@media only screen and (max-width: 740px) {
  .container {
    overflow: scroll;
  }
  .containerLeft {
    width: 100%;
    height: auto;
    border: none;
    overflow: auto;
  }
  .containerRight {
    height: 60vh;
    float: none;
    margin: 0px auto;
  }
}

@media only screen and (max-width: 560px) {
  .containerRight {
    height: 40vh;
  }
  .containerLeft {
    overflow: visible;
  }
}