
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100vw;
    height: 100vh;
}

header{
    background-color: rgb(38, 0, 82);
    padding: 20px;
    display: flex;
    align-items:center;
    justify-content: space-between;
    box-shadow: 4px 10px 40px rgb(128, 0,128, 0.4);
    position: fixed;
    width: 100%;
    
    
}

header>h1{
    color: white;
    margin-left: 50px;

}


header>ul{
    display: flex;
    gap: 30px;
    list-style: none;
    
}

a{
    color: white;
    font-weight: bolder;
    font-size: 1em;
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
  font-size: 1.1em;
  background-color:rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0px  0px 30px 10px rgba(255, 255, 255, 0.5);
  padding: 10px;
}

i{
    color: #ffffff;
    font-size: 2em;
    display: none !important;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@media (max-width: 768px) {
    header>ul{
       flex-direction: column;
       align-items: center;
       position: absolute;
       top: 75px;
       left: 190px;
       background-color: rgb(38, 0, 82) ;
       height: 300px;
       min-width:200px;
       display: none;

    }

    i{
        display: block !important;
    }
}