:root {
    --main-bg-color: rgb(49, 62, 80);
    --main-text-color: rgb(55, 65, 81);
    --icon-fill-color: rgb(0,0,0);
    
    --share-bg-color: #ff512f;
    --tile-bg-color: #ffffff;
}

body {
    margin: 4rem;
    padding: 0;
    background-image: linear-gradient(
        25deg,
        hsl(240deg 15% 13%) 0%,
        hsl(233deg 22% 15%) 11%,
        hsl(226deg 30% 17%) 23%,
        hsl(221deg 40% 18%) 36%,
        hsl(215deg 52% 19%) 48%,
        hsl(221deg 62% 26%) 61%,
        hsl(238deg 46% 36%) 74%,
        hsl(264deg 54% 40%) 87%,
        hsl(287deg 84% 36%) 100%
      );
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;

}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--share-bg-color);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 12px;
    fill: var(--main-text-color);
}

.container {
    width: 100%;
    max-width: 760px;
    
    margin-top: 10px;
    display: flex;

    flex-direction: column;
    align-items: center;
}

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

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

.icon {
    margin: 4px 8px;
    width: 44px;
    max-height: 44px;
    color: var(--icon-fill-color);
}

h1 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--tile-bg-color);
}

a {
    font-weight: 600;
    text-decoration: none;
    color: var(--main-text-color)
}

.tile {
    height: 50px;
    width: 100%;
    max-width: 760px;
    background-color: var(--tile-bg-color);
    margin: 7px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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(192 193 193 / 0);
}

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

.tile-share-button:hover
{
    transition: background-color 0.2s;
    background-color: rgb(192 193 193 / 255);
}