:root{
    --text : black;
    --desc: rgb(255, 255, 255);
}
* {
    box-sizing: border-box;
}
body {
    font-family: "Rubik Sans", serif;
    padding: 10px;
}

.menu{
    display:flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Fragment Mono", monospace;
    font-size: 26px;
    padding: 20px;
}
.contact{
    font-size: 16px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Fragment Mono", monospace;
    padding: 20px;
}
.menu a, .contact a{
    text-decoration: none;
    font-weight: 500;
    color: var(--text) !important;
    display: inline-block;
    transition: transform 0.2s ease;
}

.menu button{
    font-size: 26px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Fragment Mono", monospace;
    padding: 20px;
    background-color: var(--desc);
    border: none;
    transition: transform 0.3s ease;
}
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    color: white;
    font-family: "Rubic Sans", sans-serif;
    font-size: 25px;
    padding: 20px;
    text-align: center;
}
.close{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--desc);
    font-size: 46px;
}
.menu a:hover, .menu button:hover{
    transform: scale(1.3);
}

.contact a:hover{
    text-decoration: none;
    color: var(--text)
}
.contact a:active {
    color: var(--text)
}
.article{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
}
.article h1{
    text-align: center;
    font-family: "Rubik Bubbles", system-ui;
    font-size: 300px;
    padding: 0;
    margin: 0;
}

.cart__inf{
    display: flex;
    justify-content: center;
    margin: 10px;
    grid-template-columns: repeat(3, 1fr);
    height: 400px;
}
.cart__inf .cart{
    padding: 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;

}
.center{
    border-right: 1px solid var(--text);
    border-left: 1px solid var(--text);
}
.desc{
    color: var(--text);
    font-family: "Fragment Mono", monospace;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;

    font-weight: 400;
}
.cart-title{
    color: var(--text);
    font-family: "Rubik Sans", serif;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    font-style:normal;
    font-weight: 900;
    margin: 0 20px 20px 0;
    padding: 0;
}
.cart__prod{
    display: flex;
    justify-content: center;

}
.cart__prod .cart{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:10px;
}
.cart__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    height: 550px;
    text-transform: uppercase;

    opacity:0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cart__item.show{
    opacity: 1;
    transform: translateY(0);
}

.cart__item:hover {
    transform: translateY(-10px) scale(1.03);

}



.cart__item img{
    width: 100%;
    object-fit: cover;
}
.cart__item__name {
    color: var(--text);
    font-family: "Rubic Sans", sans-serif;
    font-weight: bold;
    font-size: 30px;
}

.cart__item__desc, .cart__item__link a{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-family: "Fragment Mono", monospace;
    font-size: 14px;
    font-weight: 400;
    color: var(--desc);
    text-transform: none;
    letter-spacing: 2px;
    text-decoration: none;
}

.cart__item__desc > p:nth-child(2) {
    color: #FFFFFF87;
}
.cart__item .cart-icon{
    width: 40px;
}
.cart__item__link{
    display: flex;
    width: 90%;
    height: 90%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}



.text p{
    font-family: Rubik Sans, serif;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    padding: 0 100px
}
.link{
    border: 1px solid var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    margin: 30px 15px;
}

.link a{
    color: var(--text);
    font-family: "Rubik Sans", sans-serif;
    font-weight: bold;
    font-size: 36px;
    margin-right: 80px;
    text-decoration: none;
    text-transform: uppercase;
}
.link a:hover{
    text-decoration: none;
    color: var(--text)
}
.link a:active{
    text-decoration: none;
    color: var(--text)
}
.link img{
    width: 100px;
}
.community{
    margin: 0 15px;
}

.banner, .community{
    width: 98%;

}

.image{
    font-family: "Rubik Sans", sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-style: normal;
}
.image h2{
    font-size: 36px;
    margin: 30px;

}
.image h3{
    font-size: 182px;
    margin:0;
    padding: 0;
}


.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p, .copyright a{
    color: var(--text);
    font-family: "Rubik Sans", sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    margin: 50px 0 0 0;
}



@media (min-width: 1024px) {
    .desktop-break {
        display: block;
    }
    .article h1{
        font-size: 190px !important;
    }
}
@media (max-width: 912px) {
    .desktop-break {
        display: none;
    }
    .cart__item {
        max-width: 400px;
    }
    .cart__prod .cart {
        grid-template-columns: repeat(2, 1fr);
    }
    .cart__inf{
        height: 600px;
    }
    .center{
        border-right: none;
        border-left: none;
        border-top: 1px solid var(--text);
        border-bottom: 1px solid var(--text);
    }
    .article h1{
        font-size: 105px !important;
    }
    .cart__inf{
        flex-direction: column;
    }
    .image h3{
        font-size: 70px;
    }
}

@media (max-width: 600px) {

    .menu button{
       font-size: 20px;
    }
    .menu a{
        font-size: 20px;
    }
    .article h1{
        font-size: 85px !important;
    }
    .menu{
        font-size: 18px;
    }
    .contact{
        flex-direction: column;
        font-size: 18px;
    }

    .cart__prod .cart {
        grid-template-columns: 1fr;
    }
    .cart-title{
        font-size: 25px;
    }
    .cart__item {
        max-width: 380px;
    }
    .cart-title{
        font-size: 20px;
    }
    .text p{
        font-size: 35px;
        padding: 0 30px;
    }
    .banner, .community{
        width: 90%;
    }
    .community{
       margin:0;
    }
    .link{
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
    .link a{
        font-size: 18px;
        text-align: center;
        margin-right: 0;
    }
    .image h2{
        font-size: 18px;
    }
    .image h3{
        font-size: 55px;
    }
    .copyright{
        flex-direction: column;
        font-size: 16px;
        align-items: flex-start;
        margin-top: 30px;
    }
    .copyright p, .copyright a{
        padding: 0;
        margin: 10px 0 0 0;
    }

}

