/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap'); */

body {
    font-family:Arial, Helvetica, sans-serif;
    background: #a9b9ac;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 175px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 450px; /* Adjust the width as needed */
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center; /*Center the content inside the modal */
}

/* .close {
    color: #ff0000;
} */

#firstName {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 10px;
}

#lastName {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 10px;
}

.navbar-brand {
    width: 200px;
}

.container {
    width: 450px;
    padding: 20px;
    margin: 80px auto;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

h1 {
    text-align: center;
}

.question {
    font-weight: bold;
    margin-bottom: 10px;
}

.options {
    margin-bottom: 20px;
}

.option {
    display: block;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0D8442;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.button:hover {
    background-color: #01a169;
}

.result {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.hide{
    display: none;
}

#btt-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
  
#btt-button::after {
    content: "\f139";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #888;
}
  
#btt-button:hover {
    cursor: pointer;
    background-color: #555;
}
  
#btt-button:active {
    background-color: #777;
}
  
#btt-button.show {
    opacity: 0.5;
    visibility: visible;
}

.copyright {
    font-weight: bold;
    text-align: center;    
}

@media only screen and (max-width: 430px) {

    .modal-content {
        width: 350px; /* Adjust the width as needed */
    }

    #firstName {
        width: 67%;
    }

    #lastName {
        width: 67%;
        margin-top: 20px;
    }

    .container {
        width: 350px;
    }

}