body {
    font-family: 'Arial', sans-serif;
    background-image: url('img/background.jpg');
    /* Replace with the actual file name and extension */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    opacity: 95%;
    /* Add position relative to establish stacking context */
    
    /* Overlay for dimming effect */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -2;
    }
}

#align {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.container {
    margin-top: 25px;
}

p {
    font-size: 30px;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

.btn-success {
    display: none;
}