/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent scrolling */
    font-family: 'Poppins', sans-serif;
    background: #0d1117; /* Dark background */
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Stylish Lines */
.line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.6);
}

/* Content Area */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    padding: 20px;
}

@media (max-height: 400px) {
    .content {
        font-size: 1rem;
    }
}
