/* ------------------------ */
/* RESET BÁSICO Y TIPOGRAFÍA */
/* ------------------------ */

* {
  margin: 0;
  padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

main{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    min-height: 1080px;
    margin-top: 120px;
}

a{
    cursor: pointer;
}

a, p, li {
    font-size: 16px;
    text-decoration: none;
}

h1{
    font-size: 26px;
}

h2{
    font-size: 24px;
}

h3{
    font-size: 22px;
}

h4{
    font-size: 20px;
}

h5{
    font-size: 18px;
}

h6{
    font-size: 16px;
}

h7{
    font-size: 14px;
}


.breadcumb{
    display: flex;
    width: 100%;
    max-width: 1440px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcumb a{
    color: #4f4f4f;
    font-size: 14px;
}