@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:wght@200&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background-color: #131415;
    /*font-weight: 600;*/
    letter-spacing: 0.5px;
    font-size: 16px;
    background: #131415;
    color: lime;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    max-width: 600px;
}

.section-contaier {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 40px;
    left: 750px;
    width: 80%;
    height: 100%;
    background-color: black;
    color: lime;
    /*border: red 1px solid;*/
    /*max-width: 600px;
    max-height: 900px;*/
    padding: 3rem 2rem 3rem 2rem;
    border-radius: 20px solid green;
    box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.72);
}

h1 {
    padding-bottom: 50px;
    /* border: red 1px solid;*/
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 4rem;
    max-width: 400px;
    /*border: 1px red solid;*/
    padding: 0 10px 0 10px;
    margin: 0 auto;
    /*padding: 0 2rem 0 2rem*/
    /* background-color: red;*/
}

.item label {
    font-size: 15px;
    font-weight: 0.5rem;
}

.item input:hover {
    background-color: lime;
    color: black;
    transition: 0.3s all linear
}

.item input {
    background-color: #202020;
    border: none;
    border-radius: none;
    padding: 2px 2px;
    color: white;
    font-weight: bolder;
    font-family: 'Poppins';
}

.btn {
    height: 40px;
    width: 150px;
    width: 45%;
    height: 45px;
    background: black;
    color: lime;
    border-radius: 25px;
    border: 1px solid limegreen;
    font-family: 'Poppins';
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 28%;
}

.btn:hover {
    background-color: lime;
    color: #202020;
    transition: all 0.4s linear;
}

.border {
    border-radius: 20px;
    height: 30px;
    margin: 13px 13px;
    width: 60%;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.radio {
    margin: 0px 15px;
    border: 0
}

.imgg {
    padding-bottom: 20px;
    width: 200px;
    height: 300px;
}

@media (max-width: 600px) {
    body {
        width: 100%;
        margin-left: 0px;
        margin-top: 0px;
        background: black;
    }
    .container-items {
        width: 100%;
        height: 100%;
        max-height: 100%;
        background-color: black;
        border-radius: 0;
        position: static;
    }
    .imgg {
        padding: 25px 0;
        width: 200px;
        height: 300px;
        /*border: 2px red solid;*/
    }
}


/*Products*/