* {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    color: white;
}

body {
    background-color: black;
}


/* Main stylings for the title page */

#stars {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    z-index: -1;
}

#title {
    font-weight: normal;
    text-align: center;
    margin-top: 40vh;
    margin-bottom: 40vh;
}

#title h1 {
    font-size: 6vw;
    letter-spacing: 2.5vw;
}

#title h2 {
    font-size: 2vw;
    letter-spacing: 2px;
}

#main-nav {
    float: right;
    position: absolute;
    top: 0px;
    right: 0px;
}

#main-nav ul {
    list-style-type: none;
}

#main-nav li {
    position: relative;
    text-align: right;
    display: block;
}

#main-nav a {
    display: inline-block;
    margin: 10px 0px;
    padding: 10px;
    border: solid thin white;
    border-right: none;
    text-align: right;
    text-decoration: none;
    transition: padding-right 0.5s;
    letter-spacing: 1px;
}

#main-nav a:hover {
    padding-right: 60px;
}


/* Content stylings */

#information {
    margin-top: 40vh;
}

article {
    letter-spacing: 1px;
}


/* Triple column stylings */

.row {
    width: 90%;
    margin: auto;
    text-align: center;
}

.col {
    text-align: justify;
    margin: 2%;
    width: 28%;
    display: inline-block;
    vertical-align: top;
}

.col h1 {
    margin: 15px 0px;
    letter-spacing: 5px;
    text-align: left;
    font-size: 2.5vw;
}

.col ul {
    list-style-type: none;
}

.col li {
    margin: 10px 0px;
}


/* Footers */

footer {
    border-top: dotted thin lightgrey;
    width: 100%;
    margin: auto;
    margin-top: 100px;
}

footer p {
    display: inline-block;
    margin: 20px;
    color: lightgrey;
    font-size: 0.8rem;
}

footer p.right {
    float: right;
}


/* Media queries */

@media screen and (max-width: 900px) {
    #main-nav {
        float: none;
        text-align: center;
        display: block;
        width: 100%;
    }
    #main-nav li {
        display: inline-block;
    }
    #main-nav a {
        transition: none;
        border-right: solid thin white; 
    }
    #main-nav a:hover {
        padding-right: 10px;
        text-decoration: underline;
    }
    #title h1 {
        word-wrap: break-word;
        font-size: 8vw;
    }
    #title h2 {
        font-size: 1rem;
    }
    .col {
        width: 96%;
    }
    .col h1 {
        font-size: 1.5rem;
    }
    footer p {
        display: block;
    }
    footer p.right {
        float: none;
    }
}
