* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(16, 32, 26);
    color: white;
    max-width: 1299px;
    margin: 0px;
    padding: 15px;

}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

#titles{
    flex-direction: column;
    line-height: 35px;
}

li{
    display: inline-block;
    margin: 50px;
}

a{
    color: white;
}

a:hover{
    color: rgb(14, 124, 14);
    transform: 0.5 all;
}

#cadastra{
    border: 2px solid rgb(17, 192, 8);
    padding: 10px;
    border-radius: 20px;
}

#cadastra:hover{
    background-color: rgb(14, 124, 14);
    color: white;
}

h1{
    font-weight: 200;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 50px;

}

h2{
    font-size: 56px;
    line-height: 80px;
   
}

span{
    color: rgb(9, 87, 87);

}

p{
   line-height: 20px;
   max-width: 500px;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
}

form{
    display: flex;
    flex-direction: column;
    width: 300px;
}

input{
    margin-top: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 15px;
    border: none;
}

form [type="submit"]{
    height: 40PX;
    width: 100px;
    background-color: rgb(14, 124, 14);
    color: white;
    font-weight: bold;
}

form [type="submit"]:hover{
    cursor: pointer;
}




body {
    min-height: 100vh;
    background: #0c192c;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
}
 
.bolhas {
    position: absolute;
    display: flex;
}

.bolhas span {
    width: 30px;
    height: 30px;
    background: #e5ff00;
    margin:  0 4px;
    border-radius: 50px;
    box-shadow: 0 0 0 10px #e5ff0044,
    0 0 50px #e5ff00,
    0 0 100px #e5ff00;
    animation: animar calc(120s / var(--i)) linear infinite;

}

@keyframes animar {
    0% {
        transform: translateY(100vh) scale(0);
    }
    100% { 
         transform: translateY(-10vh) scale(1);
        }
    }

.bolhas span:nth-last-of-type(even){ 
    background: #2dc3ff;
    box-shadow: 0 0 0 10px #2dc3ff44,
    0 0 50px #2dc3ff,
    0 0 100px #2dc3ff;

    
}

