@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,700;1,400;1,600;1,700&display=swap');
body {
    font-family: "Source Sans Pro";
    background-color: #ebd49a;
    margin: 0;
}

.container {
    position: absolute;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bubbles {
    display: none;
}

.logo {
    text-align: center;
    padding: 3em 0 6em 0;
}

.logo img {
    width: 20vw;
    min-width: 300px; 
}

.cover {
    width: 100%;
}

.cover img {
    width: 100%;
}

.box {
    background-color: #f3e5c2;
    padding: 2em
}

.footer {
    padding: 2em
}

.footer h1 {
    color: #a01e21;
    margin: 2em 0 0 0;
    font-weight: bold;
    text-align: center;
    font-size: 1em;
}

.footer p {
    color: #f58229;
    margin: 0;
    text-align: center;
}


.button div {
    width: 100%;
}

.button img {
    width: 100%;
}

.button p {
    margin: 0;
    background-color: #fff;
    padding: 1em 2em;
    border-radius: 3em;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: #ebd49a;
    text-decoration: none;
}

.button a {
    text-decoration: none;
}

.button {
    display: inline-block;
    width: 50%;
    margin: 1em;
}

.download {
    text-align: center;
}

.tabs {
    text-align: center;
    color: white;
}

.tabs span {
    color: #a01e21;
    text-decoration: underline;
    cursor: pointer;
}

.tabs .active {
    color: #f58229;
    text-decoration: none;
}

.issue
{
    display: none;
}

.issue.active {
    display: block;
}

iframe {
    display: none;
}

@media screen and (min-width:600px) {
   
    
    iframe {
        display: inline;
    }
    
    .bubbles {
        background: url(bubbles.svg);
        background-size: cover;
        position: absolute;
        width: 20vw;
        height: calc(20vw*1.6);
        display: block;
    }
    
    .logo {
        text-align: center;
        padding: 3em 0 6em 0;
    }
    
    .logo img {
        width: 20vw;
        min-width: 300px; 
    
    }
    
    .box {
        width: 90vw;
        max-width: 800px;
        margin: auto;
        display: flex;
        padding: 1.5vw;
        background-color: #f3e5c2;
        gap: 1.5vw;
    }
    
    .cover img {
        width: 100%;
    }
    
    .cover {
        width: 40%;
    }
    
    .download {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }
    
    .button div {
        width: 50%;
    }
    
    .button img {
        width: 100%;
    }
    
    .button p {
        margin: 0;
        background-color: #fff;
        padding: 1em 2em;
        border-radius: 3em;
        width: 50%;
        box-sizing: border-box;
        text-align: center;
        color: #ebd49a;
        text-decoration: none;
    }
    
    .button a {
        text-decoration: none;
    }
    
    .button {
        display: inline-block;
        width: 100%;
    }
}