html, body {
    min-height: 100vh;
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body {
    background-color:white;
    padding:1rem;

    display:flex;
    justify-content: center;
    align-items: center;
}

body {
    font-size:1.5rem;
    color:black;
    font-family: sans-serif;
    line-height: 1.3;
}
a {
    text-decoration: underline;
    color:inherit;
}

p {
    margin:0 0 1em 0;
}
p:last-child {
    margin-bottom: 0;
}

#info {
    display:flex;
    flex-direction: column;
    gap:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#logo {
    width:33rem;
    max-width: 70%;
}

.button {
    border:2px solid #86817E;
    border-radius: 999px;
    color:#A96C53;
    text-transform: uppercase;
    padding:0.25em 1.25em 0.1em 1.25em;
}
.button:hover {
	background-color:#504C4A;
    color:black;
}

.mobileonly {
    display:none;
}

@media (max-width:1100px) {
    html {
        font-size:80%;
    }
}

@media (max-width:700px) {
    .desktoponly {
        display:none;
    }
    .mobileonly {
        display:block;
    }
}
@media (max-width:350px) {
    html {
        font-size:70%;
    }
}
