/* Existing Styles */
body {
    font-family: 'Roboto-thin', sans-serif;
    background-color: #f7f7f7;
    background-image: url('background.jpg'); /* replace with your image path */
    background-size: cover;  /* Cover the viewport */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-attachment: fixed; /* Background stays fixed with scrolling */
    background-position: center center; /* Center the image */
}

.text-yellow {
    color: #000000;
}

.logo {
    width: 300px;
    margin-bottom: 15px;
}

.divider1{
    height: 500px;
}

.divider2{
    height: 100px;
}

.divider3{
    height: 20px;
}

/* New Styles for Step 4 */

/* Main container adjustments for more centering and spacing */
.my-container {
    max-width: 85%;
    margin-top: 5%;
    background-color: #ffffff;
    padding: 20px 20px 20px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

.center {
    text-align: center;
}


/* Terminal styles */
.terminal {
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    margin: 20px auto;
    overflow: auto;
    height: 400px;
    margin-bottom: 50px;
    width: 95%;
}

.terminal p {
    margin-bottom: 10px;
    word-wrap: break-word;
    line-height: 1.5;
}

/* Button enhancements to match Snapchat's yellow theme */
.btn-warning {
    background-color: #fad400;
    border-color: #faf600;
    color: #000000;  /* Black text on yellow button */
    font-weight: bold;
    border-radius: 20px;
    width: 70%;
    height: 50px;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-warning:hover {
    background-color: #c9a400;  /* Slightly darker yellow on hover */
    border-color: #c9a400;

}

/* Responsive adjustments for smaller screens */
@media (max-width: 575.98px) {
    .container {
        margin-top: 10%;
    }
}

/* Adding a fade-out class */
.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s linear, visibility 0.5s linear;
}

/* Modify the terminal class to support fade-in effect */
.terminal {
    /* ...existing styles... */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s linear, visibility 0.5s linear;
    width: 90%;
}


.footer {
    background-color: #fff;
    margin-bottom: -100%;
    margin-top: 10rem;
}



.status-container {
    width: 90%;
    position: relative;
    margin: auto;
}

.status-bar {
    width: 0;
    height: 30px;
    background-color: #ff5858;
    border-radius: 30px;
    transition: width 2s;
    
}

.status-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    font-weight: bold;
}
