:root {
    background-color: aliceblue;
    font-size: 62.5%;
    --lamsadeorange:#E07810;
    --dauphineblue:#2E4791;
}

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.2rem;
    color: var(--dauphineblue);
    margin-bottom: 5rem;
}

h1 > span {
    font-size: 4rem;
    font-weight: 500;
}

h2 {
    font-size: 3.0rem;
    margin-bottom: 4rem;
    font-weight: 550;
}

h3 {
    font-size: 2.8rem;
    font-weight: 500;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    padding-top: 10%;
    justify-content: center;
    align-items: baseline;
    max-width: 80rem;
    margin: 0 auto;
}

/*  UTILITIES  */

.container > * {
    width: 100%;
}

.flex-column {
    display: flex;
    flex-direction: column;
}


.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Buttons */

.btn {
    font-size: 1.8rem;
    padding: 1rem 0;
    width: 20rem;
    text-align: center;
    border: 0.1rem solid var(--dauphineblue);
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--dauphineblue);
    background-color: white;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 var(--dauphineblue);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
}

.btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
