22 lines
No EOL
538 B
CSS
22 lines
No EOL
538 B
CSS
|
|
body, html {
|
|
overflow: hidden; /* Prevents scrollbar from appearing */
|
|
}
|
|
#menu {
|
|
width: 1300px; /* Sets the width of the div to 80% of the viewport */
|
|
max-width: 80%; /* Ensures the div does not exceed 80% of the viewport width */
|
|
margin: 0 auto; /* Centers the div horizontally */
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#menu img {
|
|
max-height: 50%;
|
|
max-width: 50%;
|
|
width: 100%;
|
|
height: auto;
|
|
object-fit: contain;
|
|
overflow: hidden;
|
|
} |