* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: 1.3;
}

@font-face {
    font-family: 'norms-bold';
    src: url(./fonts/TTNorms-Bold.woff2);
}
@font-face {
    font-family: 'norms-light';
    src: url(./fonts/TTNorms-Light.woff2);
}

h1, p, span {
    color: white;
    letter-spacing: 1px;
}

h1 {
    font-family: 'Roboto', sans-serif; /* Cambiado a Roboto */
    font-weight: 300; /* Ajustado el peso de la fuente */
}

h1, p {
    font-size: 1.6rem;
}

main {
    background-color: black;
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content {
    padding: 4rem 2rem;
}

.logo {
    width: 10rem;
    display: block;
    margin-bottom: 2rem;
}

.logo img {
    width: 100%;
}

.contacto {
    display: grid;
    gap: .4rem;
    margin-top: 3.4rem;
    font-size: 1rem;
    position: relative;
}

.contacto::after {
    content: url(./img/arrow.svg);
    position: absolute;
    right: 0;
    top: 10px;
    display: block;
    width: 2rem;
}

.contacto span:first-child {
    font-family: 'Roboto', sans-serif; /* Cambiado a Roboto */
    font-weight: 300; /* Ajustado el peso de la fuente */
}

.contacto span:nth-child(2) {
    font-family: 'Roboto', sans-serif; /* Cambiado a Roboto */
    font-weight: 300; /* Ajustado el peso de la fuente */
}

.marquee-container {
    display: flex;
    animation: marquee 95s linear infinite;
    text-transform: uppercase;
}

.marquee > span:nth-of-type(odd) {
    font-family: 'Roboto', sans-serif; /* Cambiado a Roboto */
    font-weight: 300; /* Ajustado el peso de la fuente */
}

.wrapper {
    position: relative;
    display: flex;
}

.wrapper::after,
.wrapper::before {
    content: '';
    display: block;
    position: absolute;
    height: 1.8px;
    background-color: #00c36e; 
    width: 100%;
}
  
.wrapper::before {
    top: -3px;
}

.wrapper::after {
    bottom: 54%;
}

.marquee { 
    white-space: nowrap;
    color: white;
    font-size: 1.4rem;
    display: flex;
}

.marquee > * {
    margin-inline-start: 0.4rem;
}

.img img {
    width: 3rem;
    transform: translateY(-12px);
}

a {
    color: white;
}

a:hover {
    color: #00c36e;
    transition: 400ms;
}  
  
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (min-width: 760px) {
    .contacto {
        display: flex;
        gap: 0;
        margin-top: 2rem;
    }

    .contacto span:nth-child(2) {
        margin-inline: .6rem;
    }

    h1, p {
        font-size: 2.3rem;
    }

    .logo {
        margin-bottom: 2rem;
        width: 7.5rem;
    }

    .contacto::after {
        top: -10px;
        right: 20px;
    }
}

@media screen and (min-width: 920px) {
    h1, p {
        font-size: 3.5rem;
    }

    .main-content {
        margin-right: 15%;
    }

    .contacto::after {
        top: -40px;
        right: 100px;
        width: 3rem;
    }
}

@media screen and (min-width: 1450px) {
    h1, p {
        font-size: 4rem;
    }

    .contacto::after {
        top: -40px;
        right: 100px;
        width: 3rem;
    }
}
