body {
    background-color: rgb(19, 19, 20);
    margin: 0;
    height: 100vh;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between; /* pushes links center/hamburger right */
    align-items: center;
    padding: 7px 10px;
    box-sizing: border-box;
}

/* Center container for links */
#links {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
}

#links img {
    width: 30px;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 18px;
    background-color: rgba(0,0,1,0.3);
}

#links a {
    margin: 0 5px;
}

/* Hamburger */
#hamburger {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
    padding: 4px 3px;
    background-color: rgba(0,0,1,0.3);
    border-radius: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Hamburger icon (3 lines) */
#menu {
    width: 18px;
    height: 2px;
    background-color: white;
    position: relative;
}

#menu::before,
#menu::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: white;
}

#menu::before {
    top: -6px;
}

#menu::after {
    top: 6px;
}

main {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 9%;
}

main h1 {
    color: white;
    font-weight: bold;
    font-size: 150px;
}

h1 span {
    background: linear-gradient(90deg, #26c46d, #6a5af9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
