@font-face {
    font-family: "Rubik";
    src: url("https://cdn.sofiaritz.com/fonts/ofl/rubik/Rubik[wght].ttf");
    font-style: normal;
    font-weight: 400 500;
}

@font-face {
    font-family: "Rubik";
    src: url("https://cdn.sofiaritz.com/fonts/ofl/rubik/Rubik-Italic[wght].ttf");
    font-style: italic;
    font-weight: 400 500;
}

:root {
    font-family: "Rubik", Inter, Avenir, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;

    min-height: 100%;
    color: rgba(255, 255, 255, 0.9);

    background-color: #221130;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

    tab-size: 2;
}

body {
    margin: 0;
    display: flex;
    place-items: center;
    text-align: center;
    min-width: 320px;
    min-height: 80vh;
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

a {
    color: #e74cac;
}

h1 {
    font-size: 50px;
    text-align: center;
}

h1, .color-underline {
    text-decoration: underline;
    text-decoration-color: #d52c9c;
}

button {
    display: block;
    padding: 3px;
    min-width: 175px;

    transition: all 150ms;
    background-color: #dc3f99;
    border: solid 3px;
    border-color: #f38cc2 #dc158d #dc158d #f38cc2;

    color: white;
}

button:hover {
    border-color: #d76d9c #ff0088 #ff0088 #d76d9c;
    cursor: pointer;
}