#ageWrapper {
 position: fixed;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 9000;
 background-color: rgba(32,23,19,.7);
 transition: visibility 0s ease-in-out .5s, opacity .5s ease-in-out;
}

#ageWrapper.ageUnknown {
 visibility: visible;
 opacity: 1;
}
.age_section{    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    vertical-align: middle;}
#agePopUp {    background-color: #fff;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border: 9px solid red;
    max-width: 450px;
    width: 100%;
    height: auto;
    top: 25%;
    position: absolute;
}
#agePopUp h1{font-size: 48px; font-weight: 600; color: red;display: flex;
    justify-content: center;
    vertical-align: middle;    margin-bottom: 20px;
    margin-top: 20px;}
#agePopUp h1 span{margin: 0 10px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;}
    #agePopUp p{margin-bottom: 10px;
    font-weight: 600;}
#agePopUp #ageOkay {
 background-color: black;
    color: white;
    padding: 15px 25px;
    display: inline-block;
    margin: 10px 15px;
    font-size: 24px;
    font-weight: bolder;
}
#agePopUp #ageOkay:hover{background-color: red;}

@media(max-width: 767px){
  #agePopUp h1{font-size: 36px; margin-top: 0;}
  #agePopUp{border: 5px solid red; max-width: 90%; top: 20%;}
  #agePopUp a{    margin-bottom: 10px; display: flex;  justify-content: center;}
}
