body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #333;
    max-height: 1000px;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200vh;
    margin: 0;
    background-size: cover;


}

nav {
    margin-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #d6336c;
    font-weight: bold;
    margin: 0 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #333;
}

.main-card,
.card {
    background: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    animation: fadeIn 2s ease;
    margin-top: 20px;
}

.photo {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}



@media screen and (min-height: 100px) and (max-height:800px) and (min-width: 100px) and (max-width:1024px) {}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    nav a {
        font-size: 1rem;
    }

    .main-card,
    .card {
        padding: 10px;
    }
}
