.section {
    font-size: 30px;
    font-weight: bolder;
}
.msection {
    font-size: 40px;
    font-weight: bolder;
}
.text {
    font-size: 20px;
    font-weight: bolder;
}
#paper {
    text-align: center;
    width: 80%;
    margin-left: 5%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 2%;
    padding-top: 2%;
    background-color: white;
}
.place {
    font-size: 35px;
    text-decoration-line: underline;
}
#results {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-template-columns: 40% 60%; 
    grid-row-start: 1;
    grid-row-end: 2;
}
#item {
    display: inline-block;
    text-align: center;
    padding: 10px;
    border: 2px solid black;
}
input {
    background-color: rgb(150,150,150);
    border-radius: 25px;
    font-size: 25px;
    border: 0px;
    text-align: center;
}
button {
    color: black;
}
#search {
    background-color: rgb(150,150,150);
    border-radius: 25px;
    font-size: 25px;
    border: 0px;
    margin-left: 10px;
    padding: auto 20px;
}
#search:hover {
    background-color: rgb(100,100,100);
}
#loadmore {
    background-color: rgb(180, 0, 0);
    border-radius: 25px;
    width: 50%;
    font-size: 25px;
    border: 0px;
}
#loadmore:hover {
    background-color: rgb(150, 0, 0);
}