body {
    padding: 0;
    margin: 0;
    position: relative;
    background-image: url(../images/home_bg.jpg);
    background-position: center;
    /* background-size: 200%; */
    background-size: cover;
    background-repeat: no-repeat;
}

.title h1{
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
}

.title h2{
    font-style:italic;
}

.wrapper{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: avenir;
}

.container{
    width:auto;
    margin-top: 40px;
}

.title{
    color: white;
    text-align: center;
    line-height: 1;
    font-size: 1.3em;
}

.input{
    margin-top: 20px;
    color: white;
    text-align: center;
    border-top: 1px solid white;
    padding: 20px;
    line-height: .5;
    font-size: 1.3em;

    /* cursor: pointer; */
}

.name-input{
    font-size: 1.0em;
    width: 100%;
    text-align: center;
    padding: 5px;
    background-color: rgba(0,0,0,0);
    border: 1px solid black;
    /* color: white; */
}

.enter-btn{
    background-color: white;
    color: black;
    margin-top: 10px;
    width: 50%;
    padding: 10px;
    border-radius: 0;
    font-size: 1.2em;

    display: block;
    margin: auto;

}

.modal .btn{
    margin: 0 auto;
    border-radius: 0;
    background-color: #252525;
    border-color: #252525 !important;
}

.modal-header, .modal-footer{
    border:0px;
}

.modal-body{
    text-align: center;
}

.modal-content{
    width: 80%;
    margin:0 auto;
}


@media only screen and (max-width: 768px) {
    body {
        background-size: 370%;
    }
  }

@media only screen and (max-width: 414px) {
    body {
        background-size: 450%;
    }
    .title h1 {
        font-size: 2em;
    }
    .title h2{
        font-size: 1.2em;
    }
    .input h5{
        font-size: 1em;
    }
@media only screen and (max-width: 320px) {
    
    .title h1 {
        font-size: 1.5em;
    }
    .title h2{
        font-size: 1em;
    }
    .input h5{
        font-size: .8em;
    }
}



  