@font-face {
    font-family: Roboto;
    src: url("assets/fonts/Roboto-Black.ttf");
}

@media (max-width: 768px) {
    .section {
      width: 100%;
    }
  }

* {
    box-sizing: border-box;
}

header.header {
    background-color:beige;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer {
    background-color: brown;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 30px;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

.nav-link {
    padding: 0 20px;
    line-height: 50px;
    transition: .3s;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section {
    width: calc(50% - 20px);
    padding: 10px;
    padding-bottom: 35px;
    border-bottom: 1px solid #672f2f;
}

.section-profile-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    text-transform: uppercase;
}
.section-profile-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.section-profile {
    display: flex;
    justify-content: space-around;
    width: 100%;
}


pre {
    display: block;
    font-family: monospace;
    white-space: pre;
}

.pre {
    padding: 0;
    margin: 0;
}

code {
    font-family: monospace;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}