* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 50px;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1920px;
}

.section-profile {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding-bottom: 10px;
    margin: 0 auto;
    border-bottom: 15px solid darkorange;
}

.section-profile-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.section {
    width: 50%;
    padding: 10px;
    border-bottom: 1px solid #672f2f;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    padding: 10px;
    margin: 0 auto;
    color: black;
    background: darkorange;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
    padding: 10px 10px;
    list-style: none;
    background: darkorange;
}

.nav-link {
    padding: 0 20px;
    line-height: 1.3;
    text-decoration: none;
    color: black;
    transition: color 0.5s;
}

.nav-link:hover {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}


