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

/* ---------------------------------------------------------------------- */
/* main text, general elements*/
/* ---------------------------------------------------------------------- */

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

    position: relative
}

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

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

.text_container {
    padding-bottom: 20px;
}

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

.welcome-text {
    font-size: 1em;
    text-align: center;
}

.project-button_container {
    text-align: center;
    margin-bottom: 20px;
}

.project-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;
}

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

/* elements for highlight section */
.highlight-title_container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.highlight-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
}