:root {
    --color-primary: #293247;
    --color-secondary: #ADD9F4;
    --background-color: #121621;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    box-sizing: border-box;
    color: var(--color-primary);
}

.container {
    width: 80%;
    margin: auto;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
}

strong {
    /* color: coral; */
    color: var(--color-secondary);
}

/* button {
    padding: 1em;
    border: none;
    font-size: .5em;
    background-color: #333;
    border-radius: 1em;
} */

/* a {
    text-decoration: none;
    color: white;
    width: 10px;
} */
i {
    color: var(--color-primary);
    transition: all .1s ease-in-out;
}

i:hover {
    color: var(--color-secondary);
}

/* img {
    background-color: #fff;
    border-radius: 50%;
    width: 3rem;
} */