/* Reset default styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    margin: 0;
    /* Remove default margin */
}
* {
    box-sizing: border-box; /* Ensures padding and borders are included in the element's total width and height */
    margin: 0;
    padding: 0;
}
img {
    border-radius: 15px;
}
h1,
h2,
h3 {
    color: #00468B;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 35px;
    margin-bottom: 2%;
}
h3 {
    font-size: 25px;
    margin-bottom: 2%;
}

p {
    color: #2E2E2E;
    font-size: 18px;
    line-height: 2;
}
#shadow {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
}
.header {
    position: relative;
    height: auto;
    width: auto;
    overflow: hidden;
}

.header>* {
    position: relative;
    z-index: 1;
}


.footer {
    display: flex;
    justify-content: left;
    align-items: center;
}


.module {
    margin-bottom: 5%;
    display: flex;
    align-items: center;
}

.container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2%;
}

.img-container{
    width: 25%;
    height: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title{
    display: flex;
    margin: 10% 5% 5% 5%;
}

.title img{
    width: 100%;
}
.content{
    display: flex;
    flex-wrap: wrap;  
    width: 100%;
    justify-content: center;
}

#left-description{
    justify-content: left;
    align-items: center;
    text-align: left;
}

#left-description img{
    width: auto;
    max-width: 35vh;
    height: auto;
    max-height: 50vh;
}

#right-description{  
    display: flex;
    text-align: right;
}
#right-description img{ 
    width: auto;
    max-width: 35vh;

    height: auto;
    max-height: 50vh;
}

.description{
    margin: 2%;
    width: 55%;
}


.btn-dark {
    border: 2px solid #00468B;
    border-radius: 15px;
    background-color: transparent;
    width: auto;
    min-width: 150px;
    font-size: 16px;
    font-weight: bold;
    color: #00468B;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    padding: 2%;
    margin: 2%;
    white-space: nowrap;
}

.btn-dark:hover {
    background-color: #FFD700;
    color: white;
    border: 2px solid #ffc800;
}
