body {
    background-color: rgba(0, 0, 0, 1);
    background-image: url(images/moon_bg.PNG);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center 90%;
    color: white;
    position: relative;
}

.header {
    display: none;
}

.mobile-header {
    display: flex;
}

.menu {
    display: none;
}

.hamburger-menu {
    display: block;
    font-size: 50px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, .8);
    flex-direction: column;
    font-size: 1.5em;
    width: 100%;
    line-height: 2em;
    /* width: 20%;
    height: 100%; */
    text-align: right;
    position: absolute;
    top: 75px;
    right: 10px;
    /* z-index: 5; */
}

.mobile-menu.active {
    display: flex;
}

.wrapper {
    display: grid;
    place-items: center;
    font-family: 'Tangerine', Helvetica, Arial, sans-serif;
    font-size: 2em;
}

.logo {
    max-height: 400px;

}

.textboxes {
    text-align: center;
}

a:link, a:visited {
    color: white;
    text-decoration-line: none;
}

@media screen and (max-width: 600px) {
    .aboutText {
        font-size: 0.4em;
        margin-left:35%;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 100;
    }
}