@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@400..800&family=Luckiest+Guy&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(bloonsimagebackground.png);
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    color: #e4fff5;
    line-height: 1.6;
}

header {
    background-color: rgba(93, 209, 255, 0.603);
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f0f0f0;
}

main {
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
    background-color: rgba(190, 255, 252, 0.644);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

section h2 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #c8fffc;
    padding-bottom: 5px
}

section .card-mapa h2{
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: unset;
    padding-bottom: 5px;
}

.card {
    background: color #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
}

.card-mapa {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background-image: url(/MonkeyMeadow_No_UI.jpg);
    background-size: cover;
    width: 150px;
    height: 150px;
}

.card h3 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #c0f0ff;
}

.form-container {
    background-color: #e9ecef;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-container h2 {
    color: #007bff;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #27d32752;
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.534);
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #495057;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav ul li {
        margin: 0 10px;
    }

    main {
        padding: 15px;
    }
    section h2{
        font-size: 1.6rem;
    }
}

@media (max-width: 480px){
    nav ul{
        flex-direction: column;
    }
    nav ul li{
        margin: 10px  0;
    }
    main{
        margin: 10px;
    }
    form button, form textarea{
        padding: 8px;
    }
    form button{
        padding: 10px;
        font-size: 0.9rem;
    }
}

