*{
    margin: 0px;
    padding: 0px;
}

body{
   font-family: "Montserrat"; 
}

/* HEADER  */

.main-header {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0px 0px 10px #ccc;
  }
  
  .main-logo {
    color: black;
    font-size: 32px;
    margin-left: 20px;
    text-decoration: none;
  }

/*  FIN DE HEADER */

.main-nav {
   
    margin-right: 20px;
  }
  

.button-menu {
    display: none;
}

.nav-links {    
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .link-item {
    /* margin-top: 2rem; */
    color: #fff;
    text-decoration: none;
    /* font-weight: bold; */
    position: relative;
    margin-left: 25px;
    margin-right: 25px;
    transition: all 200ms;
  }

  .link-item:hover {
    /* margin-top: 2rem; */
    scale: 1.1;
    color: #E1BE00;
  }