img, video, canvas {
    max-width: 100%;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }

.fundo {
    width: 100%;
    height: 100vh;
    
    display: flex;
    background-color: rgba(255, 255, 255, 0);
    
}

.fundo1 {
    width: 100%;
    height: 100vh;
    margin-top: -100vh;
    
    display: flex;
    background-color: rgb(255, 255, 255);
}

.box {
    margin-left: 15%;
    width: 70%;
    /*background-image: url(../img/vertigo.png);*/
    
    display: flex;
    justify-content: center;
    position: relative;
    
    
    
    
}

.titulo1 {
    text-align: center;
    margin-top: 30vh;
    font-size: 5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    
    color: rgb(235, 235, 235);
    transition: color 4s ;
    word-break: normal;
    
    
}

.titulo1:hover {
    color: rgb(90, 90, 90);
    transition: color 1s ;
}

.subtitulo {
    text-align: center;
    font-size: 0.4em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    color: white;
    transition: color 4s ;
    
    
}

.titulo1:hover .subtitulo{
    color: rgb(255, 220, 145);
    transition: color 1s ;
}

.box1 {
    width: 15%;

    background-color:rgb(255, 255, 255);
    margin-left: 85%;
    
    
}

.sobre {
    width: 100%;
    margin-top: 1vh;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: rgb(199, 199, 199);
    
    opacity:1;
    transition: color 1s ease-in 1.2s;
}

.box1:hover .sobre {
    color: rgba(199, 199, 199, 0);
    transition: 500ms 0s;
}

/*.info {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: rgb(199, 199, 199);
    position: absolute;
    margin-left: 30%;
    margin-top: 5vh;
    
}*/

.foto1 {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease-in, transform 1.5s ease-in-out;
    transform: translate(0,-100vh);
}

.box1:hover .foto1{
    opacity: 1;
    transform: translate(0, -4vh);
    

}

.side1 {
    font-family: 'Open Sans', sans-serif;
    color: rgb(122, 122, 122);
    padding: 2em;
    padding-left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in, transform 1.7s ease-in-out;
    transform: translate(0,-100vh);
}

.box1:hover .side1{
    opacity: 1;
    transform: translate(0, -4vh);
    transition: 1.4s ease-in-out;
    
}

ul {
    position: absolute;
    list-style-type: none;
    
    padding: 0;
    overflow: hidden;
    
    
    
    
    
  }
  
  li {
    float: left;
  }
  
a {
    display: block;
    text-align: center;
    padding: 1vh;
    padding-left: 2em;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    color: rgb(199, 199, 199);
    transition: color 2s;
    
  }
  
  li a:hover {
    color:  rgb(90, 90, 90);
    transition: 300ms;
  }
 

.icon {
    position: fixed;
    overflow: hidden;
    margin-top: 90vh;
    opacity: 0.4;
    z-index: 2;
    transition: opacity 300ms;
    
}

.icon:hover {
    opacity: 0.7;

}