body{
    margin:0;
    padding: 0;
    background-color: blue;
    color: brown;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;

}

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

}

.share-button{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: aqua;
}

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

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

}

h1{
    font-size: 50px;
    margin-bottom: 30px;
}

h2{
    font-size: 40px;
    margin-bottom: 30px;
}

a{
    text-decoration: none;
    color: black;
}

.tile{
    width: 100%;
    height: 200px;
    background-color: chartreuse;
    margin: 7px;
    border-radius: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.tile:hover{
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    transform: scale(1.02);

}

.tile-share-button{
    margin: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: coral;
}

.tile-share-button svg {
   margin: 12px;
   color: white;
}

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

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

.icon{
    margin: 0 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
}