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

header {
    width: 95%;
    max-width: 600px;
    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: 600px;
    margin: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 18px;
    color: black;
}

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

.tile {
    width: 95%;
    margin: 7px;
    border-radius: 17px;
    background-color: #303030;
    display: flex;
    justify-content: space-between;
}

.qa {
    margin: 7px;
    padding:12px;
}

.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;
}

.pic {
    width: 80vw;
    height: auto;
}

.image-container {
border: 2px solid black;
}

.image-container img {
    display: flex;
    justify-content: space-between;
}

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