/* Header styling */

header {
    display: flex;
    width: 100vw;
    height: 75px;
    justify-content: space-between;
    background-color: #13212E;
    color: white;
    align-items: center;
}

header h1 {
    margin-left: 30px;
    font-size: clamp(20px, 2vw, 2.3rem);;
    color: white;
}

header div {
    margin-right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

header div a {
    font-size: 1.5rem;
    color: white;
}

header div a.signup-l {
    font-weight: 800;
}

/* Footer styling */

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer div {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

footer div a {
    font-size: 1.2rem;
    color: white;
    text-decoration: underline;
    font-weight: 500;
    text-align: center;
}

footer p {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: #7A7A7A;
    text-align: center;
}

@media (max-width: 1230px) {

    footer div {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    header div {
        margin-right: 10px;
        gap: 10px;
    }
    

}