/* CSS Document main */
:root {
overflow-x: hidden;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 15px;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    outline-color: #289a9c;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.masthead {
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color: white;
}

.color-overlay {
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    height: 100%;
    width: 100%;
}

h1 {
    font-size: 3rem;
}

.singleCol {
    max-width: 750px;
    margin: 0 auto;
}

.darkBG {
    background-color: #289a9c;
    color: white;
}

.lightBG {
    background-color: rgb(250, 250, 250);
    color: black;
}

.textBuggy {
    color: #289a9c;
}

section {
    padding: 60px 0;
}

h3.section-title {
    margin-bottom: 20px;
}

#page-footer {
    padding: 15px 0 10px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
    }
    .masthead {
        min-height: 50vh;
    }
    h1 {
        font-size: calc(1.525rem + 3.3vw);
    }
}
/* Add this to the CSS Document main */

.btn:hover, 
#btn_register:hover {
    background-color: #1e7b7d; /* Darker shade of the teal color */
    color: #ffffff;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:active,
#btn_register:hover {
    background-color: #156163; /* Even darker shade for the active state */
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /* Slight push down effect */
}

#muteButton:hover {
    background: rgba(255, 255, 255, 0.9);
}

#muteButton:active {
    background: rgba(255, 255, 255, 1);
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
}

/* CSS Document main */
/* ... (previous main CSS styles) ... */

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: #289a9c;
    border: 2px solid #289a9c;
    color: white;
}

.btn-primary:hover {
    background-color: #1f7a7c;
    border-color: #1f7a7c;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #289a9c;
    color: #289a9c;
}

.btn-outline-primary:hover {
    background-color: #289a9c;
    color: white;
}

.btn-dark {
    background-color: #343a40;
    border: 2px solid #343a40;
    color: white;
}

.btn-dark:hover {
    background-color: #23272b;
    border-color: #23272b;
}

.btn-signup {
    background-color: #289a9c;
    border: 2px solid #289a9c;
    color: white;
}

.btn-signup:hover {
    background-color: #1f7a7c;
    border-color: #1f7a7c;
}

/* Additional utility classes used in the buttons */
.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.me-md-2 {
    margin-right: 0.5rem;
}

/* ... (rest of the main CSS styles) ... */