* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
body {
    background-color: #f6ede4;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
#wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}
#main {
    display: block;
    text-align: center;
}
#logo {
    max-width: 500px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
h1 {
    color: #254722;
    font-family: "Lora", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    margin: 45px 0 25px 0;
}
@media (max-width: 500px) {
    h1 {
        margin: 20px 0 25px 0;
    }
}
p {
    color: #254722;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}
a {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #6b852e;
    text-decoration: none;
    margin: 5px 0;
    display: inline-block;
}