html, body{
    margin: 0;
    font-size: 20px;
    font-family: Times New Roman;
    color: rgb(0, 48, 73);
    background-color: rgb(234, 226, 183);
    text-align: center;
}

header{
    background-color: rgb(252, 191, 73);
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ToolBar{
    background-color: rgb(252, 191, 73);
    box-shadow: 0px 0px 50px rgb(252, 191, 73);
    width: 100%;

    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.ToolBar > input{
    font-size: 14px;
    margin-bottom: 5px;
    margin-right: 20px;
    margin-left: 20px;
}

header > h1{
    font-size: 46px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
}

header > h1 > span{
    font-weight: bolder;
    color: #f7f7f7;
}

header > h1:hover{
    cursor: pointer;
}

.Stock{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    margin-top: 15px;
}

.Item{
    width: 210px;
    height: 300px;
    margin: 10px;
}

.Item:hover{
    background-color: rgba(255, 193, 70, 0.491);
    box-shadow: 0px 0px 10px rgba(255, 193, 70, 0.491);
    cursor: pointer;
}

.Stock > span{
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

.Stock > p{
    margin: 0;
    margin-top: 5px;
}

.Inputs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-left: 1px;
}

.Inputs > input{
    margin-top: 2px;
}

.Inputs > select{
    margin-top: 2px;
}

input{
    border-radius: 15px;
    border-color: transparent;
    color: rgb(0, 48, 73);
    background-color: rgb(247, 127, 0);
    box-shadow: 0px 0px 10px rgb(247, 127, 0);
    font-size: 18px;
    cursor: pointer;
}

input[type="text"]{
    background-color: rgba(255, 255, 255, 0.646);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.646);
    cursor: text;
}

input::placeholder{
    color: rgb(99, 99, 99);
}

input[type="button"]:hover{
    background-color: rgba(247, 128, 0, 0.674);
    box-shadow: 0px 0px 10px rgba(247, 128, 0, 0.674);
}

input[type="submit"]:hover{
    background-color: rgba(247, 128, 0, 0.674);
    box-shadow: 0px 0px 10px rgba(247, 128, 0, 0.674);
}