body{
    margin: 0;
}

iframe{
    display: block;       /* iframes are inline by default */
    background: #4b7ed1;
    border: none;         /* Reset default border */
    height: 100vh;        /* Viewport-relative units */
    width: 100vw;
}

#polaroid {
    min-width: 100px;
    min-height: 100px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 5px 10px 20px #0009;
    pointer-events: none;
}

#polaroid > div {
    margin: 30px;
}
#polaroid img {
    width: 250px;
    height: auto;
}
#polaroid h1 {
    text-align: center;
    margin: 5px 0;
}
#icons {
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-size: 32px;
}
a{
    pointer-events: fill;
    cursor: pointer;
}
