body {
    color: rgb(0, 0, 0);
}

/* ---------------------------------------------------------------------- */
/* welcome section */
/* ---------------------------------------------------------------------- */
.welcome-container {
    margin: auto;
    width: 50%;
    margin-top: 7%;
    padding-top: 20px;
    padding-bottom: 0px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center; 
}

.welcome-container::after {
    content: "";
    position: absolute;
    bottom: 0;

    left: 15%;
    right: 15%; 
    
    height: 1px;
    background-color: #93b2b0;
}

.welcome-text-container {

}

.welcome-text {
    font-weight: bold; 
    font-size: 3em;
    text-align: center; 
}

.welcome-image-container {
    width: 100px;
    height: 100px; 
    margin-bottom: 0px;
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------------------- */
/* main text and images in content*/
/* ---------------------------------------------------------------------- */
.content-container {
    margin: auto;
    width: 50%;
    margin-top: 20px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: left; 
    text-align: left;
}

.content-summary {
    font-weight: bold;
    font-size: 1em;
}

.content {
    font-size: 1em;
    margin-top: 5px;
}

.content_header {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
}


.content_image-container {
    width: 100%; 
    margin: 15px 0; 
}

.content_image {
    max-width: 100%;
    width: 50%;
    height: auto;  
    display: block; 
    margin: 0 auto;
}

.content_image-large {
    max-width: 100%;
    width: 70%;
    height: auto;  
    display: block; 
    margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* buttons */
/* ---------------------------------------------------------------------- */
.buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin-top: 40px;
    margin-bottom: 40px;
    margin: auto;
    width: 50%;

    position: relative;
}

.button_container {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.button {
    padding: 20px 50px;
    background: #93b2b0;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(30, 30, 30, 0.2);

    color: #F8FAF9;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.2em;

    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease-in-out;
}

.button:hover {
    background: #c46d75;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(30, 30, 30, 0.2);
}

/* ---------------------------------------------------------------------- */
/* contact buttons */
/* ---------------------------------------------------------------------- */
.web_logo_icon_page {
    width: 60px; 
    height: 60px;
    transition: transform 0.3s ease;
}

.web_logo_icon_page:hover {
    transform: scale(1.2);
}

.web_logo_icon_page-wide {
    width: 250px; 
    height: 60px;
    transition: transform 0.3s ease;
}

.web_logo_icon_page-wide:hover {
    transform: scale(1.1);
}
