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

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

    }

nav {
    background-color: rgb(4, 134, 0);
    padding: 10px 20px;
    position: relative;
}

.menu-toggle {
    display: none;
}

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

.hamburger span {
    height: 4px;
    background-color: rgb(255, 214, 30);
}

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

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

h1 {
    align-items: center;
    text-align: center;
    color: aliceblue;

}

/*Responsivo*/
@media (max-width:768px){
.hamburger{
    display: flex;
    }
ul.menu{
    display:none;
    flex-direction:column;
background:#333;
position:absolute;
top:60px;
left:0;
width:100%;
}

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

}