html {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background-color: black;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

a {
    text-decoration: none;
    color: #d1e7dd;

}

.body-container {
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.contents {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.card2 h3{
    position: relative;
    top: 100px;
}

/* From Uiverse.io by Tiagoadag */ 
.card {
    width: 190px;
    height: 254px;
    background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
    border-radius: 20px;
    transition: all .3s;
    margin: 20px;
}
   
.card2 {
    width: 190px;
    height: 254px;
    background-color: #1a1a1a;
    border-radius: 14px;
    transition: all .2s;
}
   
.card2:hover {
    transform: scale(0.98);
    border-radius: 20px;
}
   
.card:hover {
    box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
}


  
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.15;
    z-index: -1; 
}
  
.slides.fade {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

.slides.fade.active {
    opacity: 1;
}

@keyframes changeSlide {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

@media (max-width: 768px) { 
body {
    overflow-x: hidden;
    width: 100vw;
}
}