/* 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;
}
h3 {
    font-size: 25px;
}

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

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


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


.module {
    margin: 2%;
    padding: 2%;
}


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