html {
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #FFFAF0;
    padding: 40px 40%;
    margin: 0;
    box-sizing: border-box;
}

.wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 60px;
    grid-gap: 20px;
    overflow-y: scroll;
}

.link-button {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #2A2A2A;
    border-radius: 5px;
    background-color: #EFDAB9;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.25s;
}

.link-button:hover {
    background-color: #CDB997;
}