* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-montserrat);
    font-size: 1rem;
}

:root {
    --font-montserrat: "Montserrat", sans-serif;
}

.main__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

#header__paragraph {
    display: flex;
    justify-content: center;
    background-color: #181818;
    color: white;
    width: 100vw;
    padding: 1.1rem;
    font-weight: 500;
    font-size: 1.06rem;
}

#header__title {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 1.1rem;
    font-size: 1.5rem;
}

.div__textImg {
    position: absolute;
    top: 51%;
    left: 5.3%;
    width: 80%;
    padding: 1rem;
    justify-content: center;
    color: white;
    z-index: 1;
}

#div__textImg-title {
    position: relative;
    bottom: 1rem;
    font-size: 2rem;
}

#div__textImg-paragraph {
    position: absolute;
    font-weight: 500;
    animation: mask-reveal 5s steps(100) normal, cursor 0.8s infinite normal;;
    border-right: 2px solid white;
    white-space: nowrap;
}

#div__textImg-paragraph span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; 
}

@keyframes cursor {
    from {
        border-right-color: white;
    }
    to {
        border-right-color: transparent;
    }
}

@keyframes mask-reveal {
    0% {
      width: 0;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
    }
    100% {
      width: 69.5%;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
    }
  }

.div__img-fixed {
    width: 100%;
    height: auto;
}

#img-fixed {
    width: 100vw;
    height: auto;
    top: -28%;
    position: fixed;
}

.div__highlights {
    position: relative;
    top: 100vh;
    height: 140vh;
    background-color: #F9F9F9;
    z-index: 1; 
}

#div__highlights-title {
    font-size: 1.7rem;
    font-weight: 600;
}

#div__highlights-paragraph {
    font-weight: 400;
}

#div__highlights-title, #div__highlights-paragraph {
    display: flex;
    justify-content: center;
    position: relative;
    top: 4rem;
    padding: 0.5rem;
}

.div__shoes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    top: 5rem;
}

.img-shoes {
    position: relative;
    top: 2.8rem;
    width: 19.5vw;
    background-color: #EBE9EA;
}

.shoes {
    position: relative;
    justify-content: center;
    width: 19vw;
    height: 45vh;
    padding: 4rem 0.2rem;
    
}

.shoes-paragraph {
    position: absolute;
    bottom: 1.5rem;
    padding: 0 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #222222;
    opacity: 0; 
    transition: 0.5s ease;
}

.shoes:hover{
    cursor: pointer;
    position: relative;
    bottom: 1.5rem;
    transform: scale(1.3);
    transition: 0.6s;
} 

.shoes:hover ~ .shoes-paragraph {
    cursor: pointer;
    opacity: 1;
    transition: 0.6s ease;
}   

.footer {
    position: relative;
    top: 30vh;
    width: 100%;
    padding: 1rem;
    background-color: #181818;
    color: white;
    text-align: center;
    z-index: 2;
}
