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

body{
    min-height: 100vh;
    background-image: url(wall.png);
    background-size: cover;
    background-position: center;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgb(5, 37, 126);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 35px;
    color: #ff008c;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color:#c80be0;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    width: 0;
    left: 0;
    height: 2px;
    background: #5500fd;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

.fallnav a{
    font-family: "Press Start 2P", display;

    background: -webkit-linear-gradient(rgb(255, 174, 0),rgb(255, 60, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.springnav a{
    font-family: "Press Start 2P", display;
    background: -webkit-linear-gradient(rgb(0, 217, 255),rgb(21, 129, 156));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.winternav a{
    font-family: "Press Start 2P", display;
    background: -webkit-linear-gradient(rgb(0, 217, 255),rgb(21, 129, 156));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}
.summernav a{
    font-family: "Press Start 2P", display;
    background: -webkit-linear-gradient(rgb(255, 95, 3),rgb(209, 154, 2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}