/* General Styles */
body, html {
margin: 0;
padding: 0;
overflow-x: hidden;
font-family: Arial, sans-serif;
}
/* Intro Section */
.intro-section {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #ffffff; /* Initial background color */
z-index: 1000;
transition: transform 2s ease, background-color 2s ease;
}
.intro-section img {
width: 150px; /* Adjust logo size */
transition: transform 2s ease;
}
.intro-section p {
margin-top: 20px;
font-size: 1.2rem;
color: #333;
}
/* Main Menu */
.main-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #0073e6; /* Logo’s main color */
opacity: 0;
visibility: hidden;
transition: opacity 1s ease, visibility 1s ease;
z-index: 999;
}
.main-menu.visible {
opacity: 1;
visibility: visible;
}
.main-menu a {
color: #fff;
text-decoration: none;
font-size: 1.5rem;
margin: 10px 0;
transition: color 0.3s ease;
}
.main-menu a:hover {
color: #ffdd57;
}
/* Main Content */
main {
padding: 20px;
margin-top: 100vh; /* Push content below the intro section */
}