* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}

body{
    background: linear-gradient(to bottom, rgb(29, 29, 29), rgb(65, 65, 65));;

    background-size: cover;
    background-attachment: fixed;
}

.items-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    list-style-type: none;
}

.items-container li{
    padding: 12px 12px;
    margin-top: 12px;
    color: rgb(243, 243, 243);
    border-radius: 25px;
}

.items-container li:hover{
    background-color: rgb(44, 44, 44);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.items-container .active{
    background-color: rgb(44, 44, 44);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.title{
    margin-bottom: 30px;
}
h1{
    margin-top: 70px;
    color: rgb(228, 228, 228);
    text-align: center;
}

.car-container img{
    width: 100%;
    border-radius: 10px;
}

.car-container{
    margin-top: 90px;
    width: 20%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgb(26, 26, 26);
    border-radius: 10px;
}


.cars-container{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.car-header{
    border-bottom: 1px solid black;
}

.car-header h3{
    text-align: center;
    color: white;
    padding: 5px 0;
}

.car-container main{
    display: flex;
    color: white;
    flex-direction: column;
    padding: 10px;
    text-align: justify;
    align-items: center;
    justify-content: center;
}


.car-container main button{
    margin-top: 30px;
    margin-bottom: 5px;
    justify-self: end;
    width: 130px;
    height: 30px;
    color: white;
    background-color: rgb(7, 7, 7);
}

.car-container main button:hover{
    color: white;
    background-color: rgb(56, 56, 56);
    cursor: pointer;
}


.video-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-container p{
    margin-top: 20px;
    color: white;
    width: 50%;
    text-align: justify;
}

.form-container{
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.form{
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
    width: 60%;
    border: 1px solid black;
    border-radius: 30px;
}
.form-container input{
    margin-bottom: 30px;
    width: 100%;
    height: 25px;
    border-radius: 25px;
    padding-left: 5px;
}


.input-button{
    height: 30px !important;
    border-radius: 10px;
    background-color: rgb(45, 117, 45);
    color: rgb(255, 255, 255);
}

.input-button:hover{
    background-color: rgb(31, 77, 31);
    cursor: pointer;
}

.textbox{
    margin-bottom: 30px;
    width: 100%;
    height: 80px;
    resize: vertical;
    padding-left: 2px;

}




