@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: black;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px 8px 30px;
    box-shadow: 2px 2px 15px #000;
    align-items: center;
}

.logo {
    width: 70px;
}

.logo-box {
    display: flex;
    align-items: center;
    margin: 5px;
}

#links {
    display: flex;
    gap: 15px;
}

.button-link {
    display: inline-block;
    padding: 10px;
    background-color: transparent;
    border: 0.5px solid rgb(83, 181, 63);
    color: rgb(83, 181, 63);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 15px;
    width: 110px;
    text-align: center;
    text-decoration: none;
}

.button-link:hover {
    background: rgb(50, 111, 38);
    color: #fff;
}

#title {
    font-size: 25px;
    color: rgb(83, 181, 63);
}

#subtitle {
    font-size: 35px;
    color: rgb(83, 181, 63);
    margin-bottom: 20px;
}

#lorem {
    margin-bottom: 20px;
}

.container-button {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

main {
    display: flex;
    padding: 40px;
    justify-content: space-between;
    align-items: center;
}

#content {
    margin-top: 80px;
    max-width: 500px;
}

input {
    width: 250px;
    padding: 10px;
    border: 1px solid #b8aeae;
    border-radius: 50px;
}

ul {
    list-style: none;
    display: grid;
    grid-template-columns: 150px 150px 150px;
    justify-content: center;
    gap: 20px;
}

li {
    border: 1px solid #8133ff;
    border-radius: 5px;
    padding: 5px;
}

img {
    width: 100%;
    /* ocupa 100% do espaço disponivel a ela*/
    height: 65%;
    border-radius: 5px;
}

p {
    color: #fff;
}

.item-price {
    font-weight: bold;
    color: rgb(83, 181, 63);
}

.showValueAll {
    margin-top: 20px;
    font-weight: bold;
    color: rgb(83, 181, 63);
}

@media screen and (max-width: 1000px) {
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    #content {
        margin-top: 10px;
    }

    input{
        margin-bottom: 10px;
    }
}

@media screen and (max-width:500px) {
    
    ul {
        grid-template-columns: 150px 150px;
    }
}