/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: rgb(0, 0, 0);
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    flex-direction: column; 
    margin: 0; 
    overflow-y: auto;
    
    
    
}


.card-container {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    padding: 0 50px; 
    margin: 30px;
}

.card {
    width: 825px; 
    background-color: #ffffff;
    padding: 40px; 
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card img {
    width: 100%;
    height: auto; 
    border-radius: 8px;
}


.btn {
    display: inline-block;
    padding: 10px 20px; 
    background-color: rgb(0, 179, 255);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
}


.card:hover {
    transform: scale(1.05); 
}


img {
    opacity: 0.25;
    transition: opacity 500ms;
    aspect-ratio: 1.8;
}

img:hover {
    opacity: 1;
}


a:link {
    transition: color 0.5s;
}

/* Media query for responsiveness on smaller screens */
@media (max-width: 768px) {
    .card-container {
        justify-content: center; 
    }

    .card {
        width: 100%; 
    }
}



   header {
    background-color: #ffffff;
    color: black;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-size: 25px;
    height: 50px;           /* Adjust height here */
    line-height: 50px;      
    overflow: hidden;      
}


html {
    scroll-behavior: smooth;
}


h3 {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 1.5em; 
   
   
}
header {
    background-color: #000000; 
    color: black;
    
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-size: 25px;
}

