*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

body{
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

/*Main content starts here*/
.container{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.wrapper{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    box-shadow: 0px 1px 5px #f2f2f2;
    padding: 30px;
    max-width: 650px;
    width: 90%;
}

.add{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
label{
    font-size: 1rem;
    font-weight: 600;
}
.add input{
    height: 40px;
    caret-color: #333;
    border: 3px solid #abcea1;
    outline: none;
    border-radius: 5px;
    color: #333;
}
.add input{
    padding: 3px;
    font-size: 1.1rem;
}
.add input:placeholder{
    padding: 5px;
}
.add > button{
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: #40E0D0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 800;
}
h1{
    text-align: center;
}
.brand-items{
    display: grid;
    place-items: center;

}
.buttons{
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
.buttons > *{
    padding: 8px;
    font-weight: 800;
    border-radius: 5px;
    border: none;
    font-size: 1.1rem;
    background-color: #40E0D0;
    cursor: pointer;
}

@media (max-width: 500px){
  .add{
    flex-direction: column;
  }
  .buttons{
    gap: 1rem;
  }
}