* {
  width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  position: relative; 
}

.vertical-lucia{
    /*writing-mode:tb-rl;*/
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform:rotate(-90deg);
    transform: rotate(-90deg);
    white-space:nowrap;
    display:block;
    bottom:0;
    width:20px;
    height:20px;
}
.vertical-leite{
    /*writing-mode:tb-rl;*/
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform:rotate(90deg);
    transform: rotate(90deg);
    white-space:nowrap;
    display:block;
    bottom:0;
    width:20px;
    height:20px;
}

.nome {
  color: #fff;
  font-size: 40px;
}
.lucia{
  position: relative;
  float: right;
  bottom: -90%;
  right: 20px;
}
.leite{
  position: relative;
  float: left;
  top: 10%;
  left: 20px
}

.logo{
  width: 150px;
  height: auto;
  text-align: center;
}

/* Open Screen */

.opening {
  position: absolute; 
  top: 0; 
  left: 0;
  width: 100%;
  height: 580px;
  z-index: 1;
  display: flex; 
  justify-content: center;
  align-items: center;
}

.opening .container-left {
  background: url("./left.png") no-repeat ; /* https://alaialuz.com/al/left.png */
  background-size: cover;
  background-position: right;
  background-color: #C6B397;
  width: 50%;
  height: 580px;
  position: absolute; 
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  transition: width 1.5s; 
  
}

.opening .container-right {
  background: url("./right.png") no-repeat ; /* https://alaialuz.com/al/right.png */
  background-size: cover;
  background-position: left;
  background-color: #C6B397;
  width: 50%;
  height: 580px;
  position: absolute; 
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  transition: width 1.5s; 
}

.opening h2 {
  width: 400px;
  height: 50px;
  font-size: 2em; 
  font-family: 'Brannboll Fet', sans-serif;
  position: absolute;
  margin-left: 180px;
  z-index: 4;
  /*border: 4px solid #7BF1A8;*/
  color: #31967d;
  border-radius: 5px;
  background-color: transparent; 
  transition: all .5s; 
}

.opening button:hover {
  background-color: #7BF1A8; 
  color: #2F394D; 
  font-weight: bold;
}

.opening .slide-left {
  width: 0; 
}

.opening .slide-right {
  width: 0; 
}

/* Content */
.content {
  background: url(./5897941.jpg) no-repeat;
  background-color: #245e4f;
  font-size: 35px;
  font-weight: bold; 
  color: #fff;
  height: 580px;
  width: 100%;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Brannboll Fet', sans-serif;
  line-height: 2em;
}

.show-me {
    opacity: 0;
    display: block;
    -moz-animation: cssAnimation 2.5s;
    /* Firefox */
    -webkit-animation: cssAnimation 2.5s;
    /* Safari and Chrome */
    -o-animation: cssAnimation 2.5s;
    /* Opera */
    animation: cssAnimation 2.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes cssAnimation {
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}