|
|
@ -40,7 +40,7 @@ body {
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
h1 {
|
|
|
|
font-family: monospace;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: calc(5rem + 3vw); /* Responsive font size for h1 */
|
|
|
|
font-size: calc(5rem + 3vw);
|
|
|
|
color: #e5e5e5;
|
|
|
|
color: #e5e5e5;
|
|
|
|
margin-top: 200px;
|
|
|
|
margin-top: 200px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
@ -48,18 +48,18 @@ h1 {
|
|
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
h2 {
|
|
|
|
font-family: monospace;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 1.6rem; /* Adjust the font size for h2 as needed for responsiveness */
|
|
|
|
font-size: 1.6rem;
|
|
|
|
color: #e5e5e5;
|
|
|
|
color: #e5e5e5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
h3 {
|
|
|
|
font-size: 1rem; /* Adjust the font size for h3 as needed for responsiveness */
|
|
|
|
font-size: 1rem;
|
|
|
|
margin-top: 300px;
|
|
|
|
margin-top: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#header {
|
|
|
|
#header {
|
|
|
|
font-family: 'worksans', sans-serif;
|
|
|
|
font-family: 'worksans', sans-serif;
|
|
|
|
font-size: calc(1.2rem + 0.5vw); /* Responsive font size for #header */
|
|
|
|
font-size: calc(1.2rem + 0.5vw);
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
color: #e5e5e5;
|
|
|
|
color: #e5e5e5;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -74,17 +74,27 @@ h3 {
|
|
|
|
#image-container img {
|
|
|
|
#image-container img {
|
|
|
|
max-width: 400px;
|
|
|
|
max-width: 400px;
|
|
|
|
max-height: 400px;
|
|
|
|
max-height: 400px;
|
|
|
|
cursor: pointer; /* Add pointer cursor to indicate images are clickable */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#start-text {
|
|
|
|
#start-text {
|
|
|
|
display: none; /* Hide the text initially */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
#footer {
|
|
|
|
font-size: calc(1rem + 0.5vw); /* Responsive font size for #footer */
|
|
|
|
font-size: calc(1rem + 0.5vw);
|
|
|
|
position: absolute;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 10px;
|
|
|
|
left: 10px;
|
|
|
|
color: #313131;
|
|
|
|
color: #313131;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#christmas-image {
|
|
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
|
|
top: 5px;
|
|
|
|
|
|
|
|
left: 5px;
|
|
|
|
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|