Spaces:
Runtime error
Runtime error
body { | |
background-color: skyblue; | |
font-family: Arial, sans-serif; | |
} | |
.container { | |
width: 80%; | |
margin: auto; | |
padding: 20px; | |
background-color: white; | |
border-radius: 10px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
} | |
h1 { | |
text-align: center; | |
} | |
form { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
margin-bottom: 20px; | |
} | |
label { | |
margin-right: 10px; | |
} | |
input[type="text"] { | |
width: 300px; | |
padding: 5px; | |
font-size: 16px; | |
border-radius: 5px; | |
border: 1px solid #ccc; | |
} | |
input[type="submit"] { | |
padding: 5px 10px; | |
font-size: 16px; | |
background-color: #007bff; | |
color: white; | |
border: none; | |
border-radius: 5px; | |
cursor: pointer; | |
} | |
.results { | |
max-height: 500px; | |
overflow-y: auto; | |
border: 1px solid #ccc; | |
padding: 10px; | |
border-radius: 5px; | |
} | |
ul { | |
list-style-type: none; | |
padding: 0; | |
} | |
ul li { | |
margin-bottom: 10px; | |
} | |
.logo-left { | |
position: absolute; | |
left: 180px; | |
top: 20px; | |
width: 400px; /* Adjust the width as desired */ | |
/* height: 100px; Maintain aspect ratio */ | |
} | |
.logo-right { | |
position: absolute; | |
right: 180px; /* Adjusted right position */ | |
top: 15px; | |
width: 320px; /* Adjust the width as desired */ | |
/* height: 150px; */ | |
} |