/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
	 flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #111;
    color: #fff;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

/* Logo Styling */
.biglogo {
    text-align: center; /* Centers the image container */
}

.biglogo img {
    width: 90%;
    max-width: 950px;
    height: auto;
    display: block;
}

header {
    text-align: center;
}

header p {
    font-size: 1.2em;
    opacity: 0.8;
}

main {
    margin: 30px 0;
}

main h2 {
    font-size: 2em;
    color: #f5a623;
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
}

footer a {
    color: #f5a623;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
