@font-face {
  font-family: 'eras-light';
  src: url('../assets/fonts/eras-light-itc.ttf') format('ttf')
}

@font-face {
  font-family: 'eras-medium';
  src: url('../assets/fonts/ITC\ Eras\ Medium.otf') format('otf'),
}

:root {
  --color-carmesi: #aa004f;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'eras-medium', sans-serif;
}

p{
    opacity: 0.8;
    font-size: 0.95rem;
}

.title{
    margin-top: 3rem;
    margin-bottom: 1rem;
    display: grid;
    place-content: center;
}

.title h2{
    text-align: center;
    font-size: 2.5rem;
}

.separator {
    line-height: .5;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.separator span {
    display: inline-block;
    position: relative;
    text-align: center;
}

.separator span::before {
    right: 20px;
}


.separator span i {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.separator span i:before, .separator span i:after {
    border: 1px solid black;
}

.separator-red span i:before, .separator-red span i:after {
    border: 1px solid var(--color-carmesi);
}
.separator span i:before {
    right: 8px;
}

.separator span i:before, .separator span i:after {
    content: "";
    width: 8px;
    height: 8px;
    background: transparent;
    transform: rotate(45deg);
    display: inherit;
    position: absolute;
}


.separator span::before, .separator span::after {
    content: "";
    position: absolute;
    height: 1px;
    border-bottom: 2px solid gray;
    top: 3px;
    width: 50px;
}

.separator span::after {
    left: 25px;
}

.main-content{
    margin-top: 15vh;
    margin-bottom: 3rem;
}