body {
    margin: 10vh 0;
    padding: 0;
    color: #282828;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-weight: 800;
    margin: 0;
}

p {
    margin: 0;
}

.logo {
    border-radius: 10px;
    width: 80%;
    max-width: 200px;
}

.buttons .orange {
    background-color: #FF8C00;
}
.buttons .orange:hover {
    background-color: #FF8C00;
}

.buttons {
    display: grid;
    gap: 1.5rem;
    margin: 2rem auto;
}

.buttons a {
    background-color: #798e00;
    padding: 1rem;
    margin: 0 auto;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    width: 80%;
    max-width: 420px;
    font-size: 18px;
}
.buttons a:hover {
    background-color: #6c8000;
    font-weight: bold;
}

.social {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}
.social img {
    border-radius: 0;
}
.social a {
    padding: .5rem;
    line-height: 0;
    border-radius: 10px;
    color: #798e00;
}
.social a:hover {
    background-color: #798e00;
    color: #ffffff;
}

footer a {
    color: #666666;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: .5rem;
}