@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('Final_Fonts/roboto-v50-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('Final_Fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3ff;
}

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 3rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.card-image {
    width: 180px;
    height: 180px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    overflow: hidden;  
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-caption {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.card-button {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.card-button:hover {
    background-color: #5b4bc4;
}

.logo-animated {
    height: 150px;
    width: auto;
    animation: none;
}
/* Media Mobile Screen Tag */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .nav-logo {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .logo-animated {
        height: 130px;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .page-container {
        padding: 2rem 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}
