body {
    margin: 0;
    padding: 0;
    background-color: #572350;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Quicksand', sans-serif;
}
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: #deccff;
}
.share__button svg {
    margin-top: 7px;
    margin-left: 8px;
}
.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a {
    text-decoration: none;
    color: #572350;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    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);
    font-weight: bold;
    font-size: 18px;
    height: 50px;
    text-align: center;
    position: relative;
}
a:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}
a p {
    margin: 0;
    flex-grow: 1;
}
h1 {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.icon {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
}
.fab {
    font-size: 24px;
}
.image__container {
    height: 96px;
    width: 96px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 13px 71px 1px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 1px 13px 71px 1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 1px 13px 71px 1px rgba(0, 0, 0, 0.39);
    border: 2px solid white;
}
@media screen and (min-width: 768px) {
    .image__container {
        height: 150px;
        width: 150px;
    }
}
.image__container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.iframe-container {
    width: 100%;
    max-width: 680px;
    margin: 20px 0;
    text-align: center;
}
.iframe-container h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: white;
}
.iframe-container i {
    color: white;
    margin-right: 10px;
}
