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

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

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

  body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #542de0;
  }

  .main-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .section {
    width: 50%;
  }

  .section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #2f38c0;
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
  }

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


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

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

  .nav-link {
    transition: 0.3s;
  }

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

  .section-item a {
    color: #2fc042;
    text-decoration: none;
    transition: color 0.5s;
  }
  .section-item a:hover {
    color: #a76969;
  }

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

  img {
    width: 190px;
    height: 200px;
  }

  pre {
    background-color: azure;
    padding: 10px 10px 10px 10px;
  }

  .footer {
    background-color: #829985;
  }

  .logo {
    width: 40px;
    height: 40px;
  }