/* External style sheet */
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    margin: 0px;
    background-color: rgb(40, 40, 40);
}



/* Title, header & main menu area */

.navitem,.activenavitem {
    background-color: whitesmoke; 
    color: black;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto; 
    text-align: center; 
    width: 75%; 
    height: 25px; 
    transition-duration: 500ms, 500ms, 100ms;
    transition-property: width, background-color, color;
}

.navitem:hover,.activenavitem:hover {
    background-color: rgb(25, 25, 25);
    color: whitesmoke;
    width: 100%;
}

.activenavitem {
    background-color: rgb(40, 40, 40);
    color: whitesmoke;
}

#navbox {
    background: radial-gradient(circle, whitesmoke 1%, rgba(0, 0, 0, 0) 50%);
    height: 2000px;
    width: 2000px;
}

header {
    overflow: hidden;
    height: 275px;
    display: flexbox;
    background-color: white;
    color: black;
}

.navbuttonbox {
    width:15%;
    display: flex;
}

#titlebox {
    background-color: black;
    border-width: 5px;
    border-color: rgb(25, 25, 25);
    border-style: solid;
    margin: 10px 15px;
    height: 200px;
    min-width: 1020px;
    padding: 10px;
}

h1 {
    font-size: 100px;
    margin: 40px 50px;
    padding: 0;
    width: calc(100% - 600px);
    text-align: center;
    letter-spacing: 3px;
    position: absolute;
    display: inline;
    user-select: none;
    color: whitesmoke;
}

.titleimage {
    height: 100%;
    display: inline;
}



/* Featured plane box */

#featurebox {
    margin: 15px;
    background-color: rgb(25, 25, 25);
    max-width: 100%;
    min-width: 1020px;
    height: 400px;
    overflow: hidden;
}

#featuretitle {
    text-align: center;
    padding: 0px;
    font-size: 32px;
}

#featuredarticlebox {
    margin: 25px;
    height: 250px;
}

#featuredimage {
    max-height: 100%;
    border: 1px solid white;
}

#featuredtitle {
    display: inline-flex;
    font-size: 50px;
    text-align: center;
    position: absolute;
    margin: 60px 40px;
}

#featuredtext {
    display: inline;
    position: absolute;
    margin: 16px 10px 10px 200px;
    width: calc(100% - 750px);
    word-wrap: break-word;
    max-height: 250px;
    overflow: hidden;
}



/* Footer stuff */

footer {
    margin-top: 300px;
    background-color: black;
}

footer p {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}



/* Gallery */

.galleryimage {
    width: 23%;
    height: 14vw;
    border: 1px solid white;
    margin: 3px;
    margin-top: calc(3px + 2.5vw);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    transition-property: width, height, margin, z-index;
    transition-duration: 500ms;

    overflow: hidden;
    z-index: 0;
    position: relative;
}

.galleryimage:hover {
    width: 25%;
    height: 16.5vw;
    margin: 3px calc(3px - 1%);
    cursor: zoom-in;
    z-index: 1;
}

.gallerycontainer {
    width: 98vw;
    max-width: 98%;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.gallerytext {
    margin-top: 14.5vw;
}

a {
    color: white;
    text-decoration: none;
}