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

body{
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    background-color: rgb(201, 63, 63);;
    padding: 10px 20px;
    position: relative;
}

.menu-toggle {
    display: none;
}

.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburguer span {
    height: 4px;
    background-color: rgb(247, 228, 213);
    border-radius: 2PX;
}

ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul.menu li a {
    color: rgb(240, 234, 240);
    text-decoration: none;
}

h1{
    align-items: center;
    text-align: center;
    color: rgb(221, 205, 62);
}

/*Responsivo*/
@media (max-width:768px) {
    .hamburguer{
        display: flex;
    }


ul.menu{
    display: none;
    flex-direction: column;
    background: #ff9cbd;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
}

.menu-toggle:checked
+.hamburguer+ul.menu {
    display: flex;
}

}