/** @format */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    font-family: "Merriweather", serif;
    letter-spacing: -0.5px;
    cursor: default;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    background-color: #4b3c34;
    color: #f8efed;
}

.header {
    width: 100%;
    height: 100px;
    background-color: #4b3c34;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: #f8efed solid 3px;
}

body p {
    font-size: clamp(16px, 8vw, 4rem);
    font-weight: 900;
}

body p > span {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 10px;
}

.exoContainer {
    width: 90%;
    height: 80%;

    max-width: 700px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.exoContainer > a {
    font-family: sans-serif;
    width: 100%;
    height: 40%;

    background-color: #f8efed;
    color: #4b3c34;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: clamp(2rem, 8vw, 6rem);
    text-decoration: none;
}
