:root {
    --color-blue-1-rgb: 0, 90, 214;
    --color-blue-2-rgb: 0, 122, 255;
    --color-grey-rgb: 118, 118, 121;
    --focus-ring: 0px 0px 0px 4px rgba(var(--color-blue-2-rgb), 0.6);
}

body {
    margin: 0;
    padding: 0;
    background-color: rgba(250, 84, 161, 0.63);
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

.share-button {
    width: 40px;
    height: 40px;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: rgb(240,240,240);
}

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

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

h1 {
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
}

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

.tile {
    width: 100%;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255, 1);
    margin: 7px;
    border-radius: 16px;
    display: flex;
    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: 300px;
    background-color: rgb(255, 255, 255);
}

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

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

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

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

footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 1000px) {
    body {
        margin: 0;
        font-size: 50px;
        padding: 0;
        color: rgb(240,240,240);
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100vw;
        font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
        text-rendering: geometricPrecision;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    
    header {
        width: 95%;
        max-width: 788px;
        display: flex;
        justify-content: flex-end;
        padding: 12px;
        margin-top: 15px;
    }
    
    .share-button {
        width: 70px;
        margin-top: 30px;
        height: 70px;
        box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        background-color: rgb(240,240,240);
    }
    
    .share-button svg {
        width: 40px;
        height: 40px;
        vertical-align: center;
        margin-left: 15px;
        margin-top: 10px;
        color: rgb(118, 118, 121);
    }
    
    .container {
        width: 20%;
        max-width: px;
        margin: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 50px;
        margin-bottom: 30px;
        width: 400px;
        text-align: center;
    }
    
    a {
        text-decoration: none;
        color: rgb(118, 118, 121);
    }
    
    .tile {
        width: 350%;
        box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
        background-color: rgb(255, 255, 255, 1);
        margin: 15px;
        border-radius: 40px;
        display: flex;
        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: 300px;
        background-color: rgb(255, 255, 255);
    }
    
    .tile-share-button svg {
        margin-left: 12px;
        margin-top: 10px;
    }
    
    .image-container {
        height: 300px;
        width: 300px;
        border-radius: 300px;
        overflow: hidden;
    }
    
    .image-container img {
        height: 100%;
    }
    
    .icon {
        margin: 4px 8px;
        width: 44px;
        height: 44px;
    }
    
    footer {
        text-decoration: none;
        font-size: 40px;
        margin-bottom: 30px;
        margin-top: 7px;
        text-align: center;
    }
    
    footer a {
        text-decoration: none;
        font-size: 40px;
    }
}