/* a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
} */

/* .content {
    text-align: center;
    margin-top: 15%;
} */

/* .reload-btn {
    text-align: center;
    background: #eee;
    padding: 10px;
    color: rgb(61, 61, 61);
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 230px;
    display: inline-block;
    cursor: pointer;
} */

/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card {
    background-color: #fff;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
} 

 .card:hover {
    transform: scale(1.05);
} 

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.card-content a {
    display: inline-block;  
    margin-top: 15px;
    text-decoration: none;
    color:white;
    color: #000000; 
    background-color: #fcba21; 
    background-color: #3598dc;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
}

.card-content a:hover {
    text-decoration: underline;
} */


body {
    font-family: Arial, sans-serif;
    background-color: white;
    /*height: 100vh;*/
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 25px;
    /*height: 100vh;*/
}
.card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px; 
    border:2px solid #dde3ec;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px;
    padding:10px;
}
.card img {
    width: 100%;
    height: auto;
}


.card h3 {
    margin: 10px 10px;
    color: #333;
}

.card a {
    margin:5px;
    width: 80%;
    text-align: center;
    text-decoration: none;
    /* color:white;
    background-color: #3598dc; */
    font-weight: bold;
    padding: 15px;
    border-radius: 25px;
    background-color: #217ebd;
    border:1px solid #217ebd;
    color:#FFF;
}
.card a:hover{
    border:1px solid #217ebd;
    background-color: #FFF;
    color:#3598dc;
}