You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
538 B
22 lines
538 B
|
|
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;
|
|
} |