h1 {
    font-family: Georgia;
    color: #ffffff;
    margin: 10px;
    text-align: center;
    margin-top: 100px;
    font-size: 35px;
}
button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #0b4e58;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: cadetblue; 
    background-repeat: no-repeat; 
    background-size: cover;
    justify-content: center;
}
.title-image {
    width: 300px;
    margin-bottom: 20px;
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.card {
    width: 150px;
    height: 200px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: transform 0.2s;
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}
.card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.card:hover {
    transform: scale(1.1);
}
.active {
    border: 4px solid red;
}
.hidden {
    display: none;
}
.info-card {
    font-family: sans-serif;
    margin-top: 0px;
    padding: 20px;
    border: 4px solid rgb(7, 0, 84);
    border-radius: 10px;
    background-color: #ffffff;
    width: 300px;
    text-align: left;
    margin: auto;
}