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.
58 lines
1023 B
58 lines
1023 B
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden; /* Prevents scrollbar from appearing */
|
|
}
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
|
|
#menu {
|
|
width: 800px;
|
|
height: 400px;
|
|
|
|
|
|
|
|
background-size: contain;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
height: auto;
|
|
transition: transform 0.3s, scale 0.3s;
|
|
|
|
}
|
|
|
|
p{
|
|
color: dodgerblue;
|
|
align-self: center;
|
|
border: 4px dashed dodgerblue;
|
|
background-color: white;
|
|
margin-right: 40px;
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
#logo{
|
|
align-self: center;
|
|
justify-content: flex-start;
|
|
}
|
|
.seed {
|
|
display: block;
|
|
margin-bottom: 90px; /* Adjust the spacing between seeds as needed */
|
|
}
|
|
.seed img {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
.seed img:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
#image-container {
|
|
transition: opacity 0.5s ease; /* Fade transition */
|
|
}
|
|
|