body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Tahoma, sans-serif;
}

header {
    width: 95%;
    max-width: 880px;
    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);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 10px;
    color: rgb(0,0,0);
}

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

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

a {
    text-decoration: none;
    color: rgb(240,240,240);
}

.tile {
    width: 90%;
    min-height: 75px;
    background-color: rgb(37,37,37);
    margin: 8px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.tile-share-button {
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(52,52,52);
}

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


.image-container {
    height: 180px;
    width: 180px;
    border-radius: 48px;
    overflow: hidden;
}

.headerIMG {
    height: auto;
    width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

.headerIMG img {
    min-width: 350px;
    max-width: 600px;
    height: auto;
}

.footer {
    height: auto;
    width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

.footerLRG {
    max-width: 100%;
    height: auto;
    
}

.footerSM {
    max-width: 100%;
    height: auto;
    
}
.image-container img {
    height: 100%;
}

.icon {
    margin: 4px 8px;
    width: 44px;
    height: 44px;
}