header{
    background-color: rgba(40,0,80,0.4);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
}
header h1{
    font-size: 3.75em;
    text-align: center;
}
header h1 a{
    text-decoration: none;
    color: rgb(150,0,255);
    transition: color ease 0.5s;
}
header h1 a:hover{
    color: rgb(80,0,125);
}
header nav ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    list-style: none;
    font-size: 1.5em;
}
header nav ul li a{
    text-decoration: none;
    color: white;
    transition: color ease 0.3s;
}
header nav ul li a:hover{
    color: rgb(150,100,255);
    cursor: pointer;
}