@import url(https://db.onlinewebfonts.com/c/1e6ec96c95301fa73aa1d026f161a269?family=Marzo+W00+Regular);

*{
    padding: 0;
    margin: 0;
    font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.modal{
    padding: 50px;
    background-color: #ffeacf;
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 100;
    border: #ffbc66 solid 2px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.295);
}

.modal a{
    background-color: #ffbc66;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    transition: .5s ease;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.modal a:hover{
    background-color: #ffdaa9;
}

.modal img{
    width: 100%;
    margin: 50px 0 0 0;
}

/* Computer Version */

@media (min-width: 1100px) {

    .modal h1{
        margin-bottom: 28px;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 28px;
    }

    .modal h2{
        margin: 50px 0 10px 0;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 24px;
    }
    
    .modal p{
        margin-bottom: 28px;
        font-weight: lighter;
        color: rgb(158, 156, 154);
        font-size: 18px;
    }
}


/* Phone Version */

@media (max-width: 1100px) {

    .modal{
        padding: 50px;
        width: 70%;
        margin:  0 auto;
    }

    .modal h1{
        margin-bottom: 28px;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 24px;
    }

    
    .modal h2{
        margin: 50px 0 10px 0;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 22px;
    }
    
    .modal p{
        margin-bottom: 28px;
        font-weight: lighter;
        color: rgb(158, 156, 154);
        font-size: 18px;
    }
}