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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;          
  }


/*NAVIGATION CONTENTS*/

  .nav {
    border-bottom: 2px solid;
    background-color: #c8d8e4;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: space-between;
    font-size: 20px;
    list-style: none;
    text-decoration: none;
}

.nav-item {
    padding: 0 20px;
    line-height: 50px;
}

.nav-links {
    text-decoration: none;
    transition: .3s;
    color: #647265;
}

.nav-item a:hover {
    color: #4d2323;
}


/*SECTION and CONTAINER CONTENTS*/


.main-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color:#fef9f8 ;
    font-family: Roboto;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.section {
    border-bottom: 1px solid;
    font-size: 18px;
}


.section-title {
    text-align: center;
    margin: 10px;
}

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

.container {
    display: flex;
    flex-direction: row;
}


.image-container {
    display: flex;
    border: 1px solid #3e2fc0;
    margin: 0 20px;
 }

.list-container {
    list-style: none;
}

/*SELECTORS*/

#profile {
    text-align: center;
    min-width: 100%;
    font-size: 24px;
    border-bottom: 1px solid;
}
#contacts {
    justify-content: center;
    flex-direction: row;
    min-width: 40%;
    padding: 10px;
}

#summary {
    justify-content: center;
    padding: 10px;
    max-width: 50%;
}


#skills {
    justify-content: center;
    padding: 10px;
    min-width: 40%;
}


#code {
    justify-content: center;
    padding: 0 56px;
    max-width: 50%;
}

#experience {
    justify-content: center;
    padding: 10px;
    max-width: 25%;
}


#education {
    justify-content: center;
    padding: 10px;
    max-width: 70%;
}

#language {
    justify-content: center;
    padding: 10px;
    max-width: 25%;
    text-align: left;
}

#footer {
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 20px;
    height: 50px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/*LINKS*/

.link {
    text-decoration: none;
    color: #829985;
    transition: color 0.5s;
}

.link:hover {
    color: #5d7260;
}

/*TABLE CONTENT*/

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }
  
  th, td {
    text-align: left;
    padding: 16px;
  }
  
