footer{
    height: auto;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.top{
    min-height: 100vh;
    width: 100%;
    background-color: var(--black-bg);
    background-image: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--white-big-text-color) 20%, transparent) 0px,
    color-mix(in srgb, var(--white-big-text-color) 20%, transparent) 1px,
    transparent 1px,
    transparent 300px
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
   
}
.top p{
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.3vw, 1.3rem);
    color: var(--white-big-text-color);
    font-weight: 600;
    max-width: 500px;
}
.top h2{
    font-family: var(--font-primary);
    color: var(--white-big-text-color);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 750;
    letter-spacing: 2px;
}
.top .grid{
    width: 35vw;
    height: 36vh;
    background-color: var(--white-big-text-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;  
}
.top .grid div {
    width: 95%;
    height: 95%;
    overflow: hidden;
}

.top .grid div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.top button{
    width: 10%;
    height: 6%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 750;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    min-width: 140px;
    min-height: 40px;
    border: none;
    transition: all 150ms ease-out;
}
.top button:hover{
    background-color: var(--black);
    color: var(--off-white);
    border: 1px solid var(--off-white);
}
footer .bottom{
    min-height: 100vh;
    width: 100%;
    background-color: var(--black-bg);
    background-image: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--white-big-text-color) 20%, transparent) 0px,
    color-mix(in srgb, var(--white-big-text-color) 20%, transparent) 1px,
    transparent 1px,
    transparent 300px
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    
    gap: 0vw;
}
footer .bottom h1{
    font-family: var(--font-primary);
    color: var(--white-big-text-color);
    font-size: clamp(4.5rem, 26vw, 25rem);
    text-align: center;
    margin: 0;
    padding: 0;
}
footer .bottom div{
    width: 94%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translateY(-180%);

}
footer .bottom div p{
    color: var(--white-big-text-color);
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1.5vw, 1.5rem);
}
footer .bottom div #all{
    margin-left: auto;
}
footer .bottom #uno{
    width: 23%;
    position: absolute;
    transform: rotate(25deg) translate(99%, -163%) ;
    opacity: 0.9;
}
footer .bottom #dos{
    width: 28%;
    position: absolute;
    transform: rotate(-15deg) translate(-100%, -110%) ;
    opacity: 0.9;
}
