@font-face {
    font-family: trajanPro;
    src: url(../TrajanPro-Regular.otf);
}

body {
    background-position: center;
    background-size: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

.modal-content {
    position: fixed;
    bottom: 0;
    /* background-color: #fefefe; */
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    height: auto;
    min-height: 100%;

    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-body {
    padding: 2px 16px;
}


/* Add Animation */
@-webkit-keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#info_02 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;

}

#info_02 h2 {
    font-size: 3.2vw !important;
    font-family: trajanPro;
    color: #ffffff;
    font-weight: 900;
    margin: 0px;
    margin-bottom: 20px;
}

.button {
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    margin: 4px 2px;
    opacity: 0.8;
    transition: 0.3s;
    /* display: inline-block;
    text-decoration: none; */
    cursor: pointer;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 30px;
    /* width: 120px !important; */
}

.button:hover {
    opacity: 1
}

@media only screen and (min-width: 280px) {
    #info_02 h2 {
        font-size: 12px !important;
    }

    .button {
        font-size: 10px !important;
    }
}

@media only screen and (min-width: 320px) {
    #info_02 h2 {
        font-size: 12px !important;
    }

    .button {
        font-size: 12px !important;
    }
}

@media only screen and (min-width: 480px) {
    #info_02 h2 {
        font-size: 16px !important;
    }
}

@media only screen and (min-width: 820px) {
    #info_02 h2 {
        font-size: 26px !important;
    }

    .button {
        font-size: 24px !important;
    }
}

@media only screen and (min-width: 1024px) {
    #info_02 h2 {
        font-size: 26px !important;
    }

    .button {
        font-size: 24px !important;
    }
}

@media only screen and (orientation: landscape) {

    #info_02 h2 {
        font-size: 2.2vw !important;
    }

    #info_02 a {
        font-size: 2.0vw;
    }

    .button {
        font-size: 2.2vw !important;
    }
}