* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    background-image: url("images/demoBG.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.39);
    z-index: 1;
}

.csCard {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width:700px;
    padding: clamp(20px, 8vw, 50px);
    border-radius: 20px;
    background-color: #7a457a;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.logo {
    width: 35%;
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
}

.csCard h1 {    
    font-size: clamp(24px, 5vw, 35px);
    color: white;
}

.csCard h2 {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.btnContainer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: clamp(30px, 8vw, 50px);
}

.btnContainer img {
    width: 45px;
    height: auto;
    transition: transform 0.3s ease;
}

.btnContainer a:hover img {
    transform: scale(1.1);
}

@media (min-width: 1366px) {
    .csCard {
        max-width: 700px;
    }
}