html{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: rgb(255, 255, 255);
}
h1{
    font-size: 2.5rem;
    text-align: center;
}
p, ul{
    font-size: 2rem;
}
li{
    font-size: 1.5rem;
}
dd{
    font-size: 1.5rem;
}
.centered{ 
    text-align: center;
}
dl{
    display: flex;
    flex-direction: column;
    align-items: center;
}
dt{
    font-size: 2rem;
    color:brown;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.center-box{
    width: 500px;
    padding: 20px;
    border-color: black;
    border-bottom-style: dashed;
    
}
.card{
    border: 2px solid rgb(66, 31, 182);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px gray;
    list-style-position: inside;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card dd:first-child{
    margin-top: 0;
}
.card li:first-of-type{
    margin-top: 0;
}
.card:hover{
    transform: scale(1.25);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
    background-color: blanchedalmond;
}
a:hover {
    font-size: 1.5rem;
    font-weight: bold;
    color: blue;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
    transform: scale(1.35);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
    background-color: beige;
    border-radius: 5px;
  }
table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.card table td{
    text-align: center;
    border: 1px solid #ccc;
}
.enlargeable-image{
    cursor: pointer;
    transition: opacity 0.3s;
}
.enlargeable-image:hover{
    opacity: 0.8;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(142, 140, 140, 0.9);
}
.modal-content {
    margin: auto;
    display: block;
    width: 40%;
    max-width: 1000px;
    margin-top: 50px;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}