:root {
    --color1: #ff3705;
    --color2: #ec8f48;
    --color3: #313131;
  }

body{
    font-family: "Open Sans",'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
}

header{
   top: 0;
   right: 0;
   left: 0;
}

header nav{
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header nav div{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

header nav h1{
    font-weight: 800;
    background: linear-gradient(to right, var(--color1), var(--color2));
    background-clip: text;
    color: transparent;
}

header nav div a:hover{
color: var(--color2);
text-shadow: 2px 2px 10px var(--color1);
}

header nav ul{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 8px;
}
header nav ul li{
    width: 30px;
    background-color: #fff;
    border-radius: 20px;
    height: 3px;
}

header nav ul li:nth-child(2){
 width: 20px;
}

header nav ul:hover {
  li{
    background-color: var(--color2);
  }
}
header  nav ul{
    display: none;
}