@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');


.hero-image {
    background-image: linear-gradient(to top, rgba(242, 236, 236, 0.29), rgba(241, 241, 241, 0.449)), url("../img/index.jpg");
    background-color: #cccccc;
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

button {
	font-family: Fredoka;
	font-size: 1.2rem;
}

body {
    margin: 0;
    font-family: Fredoka;
    font-size: 1.8rem;
	color: #12090d;
	background: #F1FFED;
    background: radial-gradient(circle,rgba(241, 255, 237, 1) 0%, rgba(236, 232, 254, 1) 50%, rgba(255, 239, 246, 1) 100%);
    padding: 0; /* Optional: also remove default padding */
}

h1,h2,p,ul,footer {
    padding-left: 5rem;
    padding-right: 5rem;
}

footer {
	font-family: Fredoka;
    font-size: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

div.container
{
    margin-left: 5rem;
    margin-right: 5rem;
    /* background-image: linear-gradient(to left bottom, #c6e6e3, #d0eaee, #dceef5, #e9f2f9, #f4f7fc, #f7f9fd, #f9fbfe, #fcfdff, #f8fcff, #f3fbff, #eefaff, #e8fafe); */
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    animation: fadeIn 0.8s ease-out;
    }
    
    .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #6366f1;
    }
    
    .card li {
        margin-bottom: 0.5rem;
        margin-left: 1rem;
    }
    
    a {
        color: violet;
        text-decoration: none;
    }