@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f7f3f0;
    color: #5d544c;
}

main {
    display: block;
    text-align: center;
    padding: 0 10vh;
}

h1 {
    margin-top: 120px;
    font-size: 2rem;
    letter-spacing: 0.4rem;
    font-weight: normal;
}

p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
}

.button {
    display: inline-block;
    background-color: #f0e8e1;
    border: solid #5d544c 1px;
    font-size: 13px;
    padding: 10px 60px;
    color: #5d544c;
    letter-spacing: 2.5px;
    text-decoration: none;
    cursor: pointer;
    margin: 2rem auto;
    transition: ease-in 0.2s;
    box-shadow: #5d544c 1px 1px 0.5px;
}

.button:hover {
    color: #f7f3f0;
    background-color: #5d544c;
    box-shadow: 0 0 0;
}

footer {
    text-align: center;
}

.copyright {
    display: inline-block;
    font-size: 16px;
    position: absolute;
    bottom: 1.5rem;
    right: 0;
    left: 0;
}