.modalbox .box {
    -webkit-box-shadow: inset 0 0 100px 300px rgba(37, 37, 37, 0.95);
            box-shadow: inset 0 0 100px 300px rgba(37, 37, 37, 0.95);
    -webkit-backdrop-filter: blur(2px);
    margin: 0 auto;
    min-width: 330px;
    padding: 20px;
    width: 30%;
    margin-top: 15vh;
    border-radius: 8px;
    }
    .modalbox .title {
    border-bottom: 1px solid #ccc;
    font-family: verdana;
    font-size: 22px;
    letter-spacing: 0.2em;
    margin: 0;
    padding: 0 0 10px;
    text-transform: uppercase;
    color: #fff;
        }
    .modalbox .content {
    display: block;
    font-size: 18px;
    line-height: 22px;
    padding: 10px 0 0;
    color: #fff;
        }
    .modalbox .close {
    color: #fff;
    display: block;
    float: right;
    font-family: Verdana;
    font-size: 22px;
    height: 25px;
    text-decoration: none;
        }


.modalbox{
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color:#333333;
    }

.modalbox:target {
    display: block;
    outline: none;
}


.link-modal{
    text-align: center;
    margin: 0 auto;
    padding-top: 50px;
}


.link-modal a{
    border: 3px solid orange;
    box-shadow: inset 0 0 200px 10px rgba(0, 0, 0, 0.466);
    border-radius: 30px;
    color: orange;
    /*font-family: Verdana;*/
    font-size: 15px;
    letter-spacing: 0.3em;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.sub{
    width: 230px;
}

@media all and (max-width: 813px){
    .modalbox .box {
        min-width: 270px;
    }
    .sub{
        width: 150px;
    }
}