body{
    font-family: Tahoma, sans-serif;
    box-sizing: border-box;
}

.bg-back{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: center;
}

.bg-back__content{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.bodytext{
    width: 70%;
    margin: 0 auto;
    border-top: 1px solid  white;
}

.context{
    width: 100%;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.Logo{
    padding: 30px;
    text-align: center;
    width: 280px;
}

.text{
    font-size: 20px;
    padding: 20px;
    border-bottom: 1px solid  white;
    text-align: center;
    color: white;
}

.title{
    text-transform: uppercase;
    color: white;
}

.options{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    backface-visibility: hidden;
}

.option{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

.optionImg{
    margin-right: 12px;
    width: 180px;
    height:100px ;
    border: none;
    transition: all .3s;
    box-sizing: border-box;
}

.optionImg:hover{
    box-sizing: border-box;
    border: 5px solid white;
}


@media only screen and (max-width:500px) {
    .options{
        display: flex;
        flex-direction: column;
    }

    .Logo{
        width: 160px;
    }

    .optionImg{
        margin-right: 12px;
        width: 130px;
        height:70px ;
        border: none;
    }
};