body {
    margin: 0;
    padding: 0;
    background-color: rgb(20,20,40);
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    font-family: Verdana, Tahoma, sans-serif;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(20,20,40) 100%);
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(240,240,240);
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 20px;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: rgb(240,240,240);
}

.tile {
    width: 100%;
    background-color: rgb(30,30,70);
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    
    border: solid 1px rgb(240,240,240);
}

.tile:hover {
    transform: scale(1.02);
    transition: cubic-bezier(0.7, 1.41, .82, 1.41) 0.2s;
}

.tile-share-button {
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(52,52,52);
}
.tile-share-button-blank {
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.tile-share-button svg {
    margin-left: 8px;
    margin-top: 6px;
}

.image-container {
    height: 192px;
    width: 192px;
    border-radius: 96px;
    overflow: hidden;
    
    border: solid 2px rgb(240,240,240);
}

.image-container img {
    height: 100%;
}

.icon {
    width: 44px;
    height: 44px;
    margin: 4px 8px;
}

footer {
    font-size: 10px;
    color: rgb(75,75,75);
}