:root {
    --elisabethan-pink: #E15AB7;
    --elisabethan-light-pink: #ED9CD3;
    --text-font-family: 'Times New Roman', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --button-font-family: 'Times New Roman', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
    font-family: Gallante;
    src: url("Gallante-AR1ap.otf") format("opentype"),
}

body {
    background-color: var(--elisabethan-pink);
    font-family: var(--text-font-family);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 6rem;
    font-family:'Gallante', 'Times New Roman', Times, serif;
    margin-top: 50px;
    margin-bottom: 20px;
}

.center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 600px;
    width:33vw;
    font-size: 1.2rem;
}

footer {
    margin-top: 50px;
}

button {
    font: var(--button-font-family);
    background-color: #000;
    color: white;
    font-size: 1.2rem;
    border-style: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    outline: 1px solid white;
    outline-offset: -1px;
}