* {
    color: white;
    font-family: "Lexend", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('media/space.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.center {
    align-content: center;
    text-align: center;
}

.middledisplay {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.logo {
    width: 175px;
}

.image-gallery img {
    width: 512px;
    border-radius: 15px;
    margin-left: 3.5px;
    margin-right: 3.5px;
}

header {
    background-color: rgba(167, 34, 255, 0.26);
    box-shadow: 0px -13px 36px 38px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px -13px 36px 38px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -13px 36px 38px rgba(0,0,0,0.75);
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-content, .nav-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-content {
    font-size: 18px;
    margin-right: 15px;
}

.dark-section {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(17, 11, 19, 0.897);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(17, 16, 27, 0.973);
    align-content: center;
    text-align: center;
}