body {
    margin: 0;
    padding: 0;
    background-color: rgb(224, 247, 250);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

header {
    width: 95%;
    max-width: 1000px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.share-button {
    margin: 8px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: rgb(0, 188, 212);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 10px;
}

.container {
    width: 91%;
    max-width: 910px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: #000;
}

.tile {
    width: 100%;
    background-color: rgb(128, 235, 242);
    font-size: 30px;
    margin: 7px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}

.tile-share-button {
    width: 60px;
    height: 60px;
    margin: 7px;
    border-radius: 30px;
    background-color: rgb(0, 188, 212);
}

.tile-share-button svg {
    margin-left: 12px;
    margin-top: 10px;
}

.image-container {
    height: 200px;
    width: 200px;
    border-radius: 100px;
    overflow: hidden;
}

.image-container img {
    height: 100%;
}

.icon {
    margin: 4px 8px;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: row;
    align-items: center;
}