.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;

   
}


.menu{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0));
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--economica);
    }

    
.menu a{
    font-size: 2.5rem;
}

.menu img{
    margin: 1.5rem 3rem;
}
       
ul{
    margin: 0 3rem;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    }
    
.sector{
    text-decoration: none;
    color: var(--color-light);
    transition: .5s;
}

.sector:hover{
    color: var(--color-aqua-green);
}

.btn{
    text-decoration: none;
    color: var(--color-light);
    background-color: var(--color-aqua-green);
    border: 3px solid var(--color-aqua-green);
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    transition: .5s;
    }
    
    .btn:hover{
    background-color: transparent;
    color: var(--color-aqua-green);
    border: 3px solid var(--color-aqua-green);
}


.source{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    list-style: none;
    gap: 3rem;
    font-family: var(--economica);
    }
    
.source img {
width: 80%; 
}

.source p{
    color: #ffff;
    font-size: 2.5rem;
    letter-spacing: 2px;
    }
    
.play{
    border: 5px solid #25C1BD;
    background-color: #25C1BD;
    border-radius: 50%;
    margin-top: 4rem;
    padding: 0.4rem 1.2rem;
    transition: 1s;
    
    }
    
.arrowdown{
    color: #002B38;
    font-size: 5rem;
        
}

.play:hover{
    transform: scale(1.1);
    box-shadow: 1px 1px 2rem #25C1BD
}