h1 {
    font-size: 33px;
    margin-bottom: 30px;
    color: white;
    font-family: Lato;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #d7c9b8;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 5px;
    margin-top: 5px;
}

.container {
    width: 70%;
    max-width: 650px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    align-items: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.tile {
    border: 2px solid #7d5a44;
    width: 125%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    margin: 9px;
    border-radius: 30px;
    display: flex;
    text-align: left;
    justify-content: space-between;
    box-shadow: #7d5a44 8px 9px 0px 0px;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.51, .82, 1.51) 0.2s;
    transform: scale(1.02);
}

.image-container {
    height: 300px;
    width: 300px;
    border-radius: 200px;
    overflow: hidden;
    margin-bottom: 40px;
}

.image-container img {
    height: 100%;
}

.icon {
    margin: 8px 20px;
    width: 40px;
    height: 40px;
}

.blank {
    margin: 8px 20px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
}