div#content > h1 {
    font-family: 'black';
    font-size: 48px;
    margin: 0 0;
}

div#content > p {
    font-size: 32px;
    margin-top: 8px;
}

article {
    border-radius: 16px;
    background-color: white;
    
    margin: 0;

    overflow: hidden;
}

div#content {
    padding: 32px;
}

img#cover {
    width: 100%;
    height: 25vh;
    margin: 0;
    object-fit: cover;
}

img#qr {
    float: right;
    width: 256px;
}

p#scan-me {
    position: absolute;
    padding: 10px;
    border-radius: 4px;
    background: #00000099;
    font-size: 24px;
    color: #FFF;
    display: inline-block;
    width: 100px;
    text-align: center;
    font-family: 'black';
    transition: opacity .5s;
    background: opacity(20%);
    margin: 0 0 0 0 !important;
}

p#scan-me::before {
    content: '';
    top: 50%;
    right: 100%;
    position: absolute;
    width: 0;
    height: 0;
    border-right: 10px solid #00000099;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid transparent;
    transform: translateY(-50%);
}

@media only screen and (max-width:600px) {
    body {
        width: 100% !important;
        margin: 0;
        background-color: white !important;
    }

    header {
        background-color: #efb718;
        width: 100%;
        margin: 0 !important;
        padding: 16px;
        box-sizing: border-box;
    }

    h1.header {
        font-size: 15vw !important;
        text-shadow: 1vw 1vw black !important;
    }
    
    main {
        width: 100% !important;
    }
    
    article {
        border-radius: 0;
    }

    div#content {
        width: unset !important;
    }
}