body {
font-family: "pixel operator", sans-serif;
background-color: black;
color: black;
font-size:20px;
background-image: url("/media/bg/moonstarbg.jpg");
background-size:200px;
background-repeat:repeat;
background-position:center;
background-attachment:fixed;
cursor:crosshair;
scrollbar-color: pink transparent;
scrollbar-width:thin;
}

.search-container {
 display: flex;
 justify-content: center;
 margin-bottom:20px;
}

#search-input {
 width:300px;
 height:20px;
 padding:10px;
 font-size:16px;
}

#search-button {
 height:auto;
 padding:10px20px;
 font-size:16px;
 cursor: pointer;
}

.definitions-container {
 display: flex;
 justify-content: space-around;
}

.definition-section {
 width:45%;
 background-color: rgba(255,255,255,0.7);
 padding:20px;
 height:300px;
 border:1px solid #ccc;
 border-radius:10px;
 box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.definition-section2 {
 width:100%;
 margin-top:25px;
 height:285px;
 overflow-x:hidden;
 overflow-y:scroll;

}

.definition-section h2 {
 margin-top:0;
}

