body {
    margin: 0;
    padding: 0;    
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    background-image:url("wallpaper.jpg");
    font-family: 'Roboto';

}
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: #ffffff;
}
.logo-div{
    background-color: #ffffff;
    width: 100vw;
}
.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
}
h1 {
    font-size: 20px;
    margin-bottom: 30px;
}
.tile {
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    background-color:rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    margin: 7px;
    border-radius: 15px;
    box-shadow: 0px 21px 76px 10px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 0px 21px 76px 10px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 21px 76px 10px rgba(0, 0, 0, 0.39);
    display: flex;
    justify-content: space-between;
}
.tile:hover {
    transform: scale(1.04);
}   
.tile__share-button {
    margin-top: 8px;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #deccff9c;
}
.tile__share-button svg {
    margin-left: 8px;
    margin-top: 7px;
}

@media screen and (min-width: 768px) {
    .image__container {
        height: 150px;
        width: 150px;
    }
}
.image__container img {
    height: 100%;
}
.icon {
    margin: 4px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.social-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
