#content {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    color:  #1a2b74;
}
#content h1{
    font-weight: 800;
    text-align: left;
    font-size: 2rem;
    margin: 10px 0;
    color: #162565;
    text-transform: inherit;
}
#content h2{
    font-weight: 800;
    text-align: left;
    font-size: 1.5rem;
    text-transform:inherit;
    color: #162565;
    @media (width<800px) {
        font-size: 1.5rem;
    }
}

#content #modal h2{
    font-weight: 800;
    text-align: left;
    font-size: 1.5rem;
    text-transform:inherit;
    color: #162565;
    @media (width<800px) {
        font-size: 1.2rem;
        text-align: justify;
    }
}

#content p{
    font-size: 1rem;
}

#content ol {
    list-style-type: upper-roman;
    margin-left: 20px;
    padding-left: 20px;
}

#content ol li{
    margin: 5px 0;
    font-size: large;
}


#content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 5px solid #0E6BA8;
    background-color: #F0FBFF;
}

#content ul li{
    margin: 5px 0;
}

#content table  {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
  
#content td {
    border: 1px solid #ddd;
    padding: 8px;
    @media (width<800px) {
        padding: 4px;
        text-align: left;
    }
}

#content td:first-child{
    white-space: nowrap;
    @media (width < 800px) {
        white-space: wrap;
    }
}
#content tr{
    background-color: #DAF4FF;
}
#content tr:nth-child(even){background-color: white;}
  
#content tr:hover {background-color: #ddd;}
  
#content th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #0E6BA8;
    color: white;
}

#form {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 50;
    display: flex;
    justify-items: center;
    align-items: center;
}

#content #img-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin: 1rem 0;
    img {
            width: 400px;
            height: 300px;
            object-fit: cover;
            border-radius: 0.375rem; 
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    }
    @media (width < 800px) {
        flex-direction: column;
    }
}
