*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}



.uno {
    width: 100%;
    height: 170px;
    background: rgb(35, 35, 78);
    
}

picture {
    padding-left: 20%;
}



.menu1 {
    width: 100%;
    height: 40px;
    background: rgba(34, 23, 23, 0.829);
}

.menu2 {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu2 ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.menu2 ul li {
    width: 200px;
    
}

.menu2 ul li a {
    color: white;
    text-decoration: none;
    text-align: center;
    width: 200px;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu2 ul li a:hover {
    color: black;
    background: white;
}

/* main */

main {
    min-height: 100vh;
}

/* footer */

footer {
    width: 100%;
    height: 170px;
    background: rgb(35, 35, 78);
    padding-top: 20px;
}