@font-face {
    font-family: "Proxima-Regular";
    src: url("./assets/ProximaNova-Regular.ttf");
}

html {
    box-sizing: border-box;
    font-size: 100%;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

input,
button,
select,
textarea,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
}

a:visited {
    color: inherit;
}

body {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    font-family: "Proxima-Regular", sans-serif;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.logo {
    width: 20em;
    max-width: 300px;
    margin-bottom: 1rem;
}

.title {
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 120%;
    text-align: center;
    color: #7d7d7d;
}
