body{
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    color: gold;
    background: url('../images/bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
body::before{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}
.container{
    opacity: 0.9;
}
.para{
    font-size: 20px;
    color: white;
}
.btn{
    background-color: gold;
    border: none;
}

.btn:hover{
    background-color: goldenrod;
}

#akan-name{
    font-size: 24px;
    border-radius: 10px;
    padding: 5px;
}
.ak-names{
    display: none;
}
.table-responsive-sm{
    display: block;
}

@media only screen and (max-width: 500px){
    .container{
        width: 100%!important;
        align-items: center!important;
    }
    .w-50{
        width: 95%!important;
    }
}

@media only screen and (max-width: 650px){
    .table-responsive-sm{
        display: none;
    }
    .ak-names{
        display: block;
        text-align: center;
    }
}