@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: white;
    text-decoration: none;
}

ul {
    list-style: none;
}

input[type="button"] {
    width: 90px;
    height: 30px;
    cursor: pointer;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 1rem;
    font-size: 1rem;
    position: fixed;
    width: 100%;
}

nav .brand {
    font-size: 1.5rem;
    font-weight: bold;
}

nav .nav-items a {
    margin: 0 1rem;
}

main {
    /* display: flex; */
    height: 100vh;
    padding: 1rem;
}

#txt {
    margin-top: 60px;
}

.btn {
    border: none;
    margin: 5px;
    border-radius: 5px;
    background-color: black;
    color: white;
    font-size: 1.2rem;
}

#display {
    display: flex;
    justify-content: space-around;
}

#tshirt {
    height: 35vh;
    width: 20vw;
}

.info {
    text-align: center;
    margin: 1rem;
}

#shopImg {
    height: 70vh;
    width: 60vw;
}

.container {
    border: 1px solid black;
    padding: 10px;
    border-radius: 2%;
    width: 25vw;
}

.container p {
    display: flex;
    justify-content: space-between;
}

.addBtn {
    width: 100%;
    border-radius: none;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    background-color: black;
    cursor: pointer;
}


/* For screens smaller than 768px (e.g., mobile devices) */
@media (max-width: 768px) {

    #txt{
        margin-top: 80px;
    }
    #txt h4{
        text-align: center;
    }
    .cart{
        display: none;
    }

    #btnUser{
        display: flex;
        justify-content: center;
        margin: 20px;
    }

    #display{
        align-items: center;
    }

    .product{
        display: flex;
        justify-content: center;
    }

    .container{
        width: 80%;
    }

    #tshirt {
        width: 100%;
    }
}