/* Style Definitions */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@media (prefers-color-scheme: dark) {
    body {background-color: #212121;}
}

@media (prefers-color-scheme: light) {
    body {background-color: white;}
}

@media (prefers-color-scheme: dark) {
    p.MsoNormal, li.MsoNormal, div.MsoNormal {
        margin-top:14px;
        font-size:13.0pt;
        font-family:"Poppins",sans-serif;
        line-height: 170%;
        text-align: left;
        color:#FFFFFF;
        clear: both;
    }
}

@media (prefers-color-scheme: light) {
    p.MsoNormal, li.MsoNormal, div.MsoNormal {
        margin-top:14px;
        font-size:13.0pt;
        font-family:"Poppins",sans-serif;
        line-height: 170%;
        text-align: left;
        color:#000000;
        clear: both;
    }
}

p.Footer {
    margin-top:12px;
    margin-right:0cm;
    margin-bottom:60px;
    margin-left:0cm;
    font-size:12.0pt;
    font-family:"Poppins",sans-serif;
    line-height: 150%;
    text-align: left;
    color:#949494;
}

hr.LineStyle {
    margin-top:20px;
    margin-bottom:20px;
    border-color:#949494;
    border-width: 1px;
    border-style:solid;
}

@media (prefers-color-scheme: dark) {
    h1 {
        margin-top:20px;
        text-align:left;
        font-size:16.0pt;
        font-family:'Poppins', sans-serif;
        font-weight: 600;
        color:#DDDDDD;
        line-height: 150%;
    }
}

@media (prefers-color-scheme: light) {
    h1 {
        margin-top:20px;
        text-align:left;
        font-size:16.0pt;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color:#757575;
        line-height: 150%;
    }
}

@media (prefers-color-scheme: dark) {
    h2 {
        margin-top:12px;
        text-align:left;
        font-size:14.0pt;
        font-family:"Poppins",sans-serif;
    font-weight: bold;
    color:#DDDDDD;
    }
}

@media (prefers-color-scheme: light) {
    h2 {
        margin-top:12px;
        text-align:left;
        font-size:14.0pt;
        font-family:"Poppins",sans-serif;
    font-weight: bold;
    color:#616161;
    }
}

h3 {
    margin-top:12px;
    text-align:left;
    font-size:12.0pt;
    font-family:"Poppins",sans-serif;
    font-weight: normal;
    line-height: 150%;
    color:#949494;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.right {
    float: right;
    padding: 10px;
}

.left {
    float: left;
    padding: 10px;
}

.button {
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.container {
      height: 100px;
      position: relative;
}

.roundbutton {
    background-color: rgb(109, 76, 65);
    color: rgb(238, 238, 238);
    border-radius: 30px;
    width: 315px;
      height: 60px;
    font-size: 20px;
    font-weight: 500;
    margin: 20px auto 30px auto;
    border: 0px;
}

.roundbutton:active {
    background-color: rgb(145, 112, 101);
}

.roundSecondaryButton {
    background-color: rgb(238, 238, 238);
    color: rgb(109, 76, 65);
    border-radius: 30px;
    width: 300px;
      height: 60px;
    font-size: 20px;
    font-weight: 500;
    margin: 20px auto 30px auto;
    border: 0px;
}

.roundSecondaryButton:active {
    background-color: rgb(145, 112, 101);
}

.button1 {
    background-color: rgb(109, 76, 65);
    color: white;
    border: 0px solid #4CAF50;
}

.button1:hover {
    background-color: #4CAF50;
    color: white;
}

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}

.image-container {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*align-items: center;*/
    align-items: flex-end; /* Align items by the bottom */
}

.left-image {
    /*width: 200px;*/ /* Set a fixed width of 200px for both images */
    height: auto; /* Maintain the aspect ratio */
}

.right-image {
    /*width: 300px;*/ /* Set a fixed width of 200px for both images */
    height: auto; /* Maintain the aspect ratio */
    margin-left: auto; /* Push the right image to the right */
}

p {
    clear: both; /* Ensure the text appears below the images */
}