body {
    background-color: #12151B;
    color: #E6E9EF;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #E6E9EF;
    margin-bottom: 50px;
    position: relative;
}

header * {
    display: inline;
}

.icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

main {
    background-color: #232730;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto 50px auto; /* centers main and adds bottom spacing */
}

main section {
    margin: 30px 0; /* space between About, Contact, Login sections */
}

a {
    color: #4DA3FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    font-size: 14px;
    color: #A0A3A9;
    background-color: #1A1E25;
}

/* Login Settings */

#loginBackground {
    background-color: #343C3C;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    left: calc(50vw - 150px);
    top: 130px;
    width: 300px;
}

#loginBackground h1 {
    position: relative;
    top: -20px;
    margin-top: 30px;
    color: rgb(230, 230, 230);
}

#loginBackground h4 {
  position: absolute;
  top: -60px;
  color: rgb(150, 150, 150);
}

#loginBackground button {
    position: absolute;
    left: 5px;
    bottom: 5px;
    border:none;
    background-color: rgba(0, 0, 0, 0);
    text-decoration: underline;
    color: var(--blurple);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

#loginBackground h1, #loginBackground h4 {
    position: relative;
    margin-left: 10px;
    font-family: "Work Sans", sans-serif;
}

#loginForm input {
    font-size: 15px;
    height: 30px;
    width: 100%;
    outline: none;
    background-color: #485353;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 10px;
    border:none;
    border-radius: 2px;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    padding-left: 5px;
    transition: margin-top 1s, opacity 1s;
}

#loginForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 250px;
    position: relative;
    left: 25px;
    margin-top: -80px;
    margin-bottom: 35px;
}

#signup {
    position: absolute;
    bottom: 5px;
    left: 5px;
}

input:not(.signup) {
    z-index: 5;
}

#loginForm.login input.signup {
    margin-top: -50px;
    opacity: 0;
}

#loginForm:not(.login) input.signup {
    margin-top: 10px;
    opacity: 1;
}