body, html {
    margin-top: 1.5rem;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    background: #000;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('galaxy_background_url') no-repeat center center/cover;
    animation: star-twinkle 5s infinite;
    z-index: -1;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

header, footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    text-align: center;
}

.header-content, .footer-content {
    position: relative;
    display: inline-block;
}

.header-image {
    width: 150px;
    height: auto;
    z-index: -1;
}

.header-title, .footer-title {
    font-size: 2rem;
    color: #fff;
    z-index: 1;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
    margin: 0;
}
.footer-title {
	font-size: 1rem;
	text-align: center;
}
.header-subtitle {
    font-size: 1rem;
    color: #fff;
    z-index: 1;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
    margin: 0;
}
.logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
	height:10vh;
}
main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
	margin-top:30px;
    padding: 10px 15px 10px 15px;
}
.logo-container {
    flex: 1;
    text-align: center;
}
.logo {
	max-width:100%;
}
.logo-big {
    max-width: 80%;
    height: auto;
}

.text-container {
    flex: 2;
    color: #fff;
    font-size: 1.2rem;
}

.text-container a {
    color: #ff6347;
    text-decoration: none;
	float: right;
}

.text-container a:hover {
    text-decoration: underline;
}
