@charset "UTF-8";
/* stylesheet for my website */

body {
    margin: 0px;

    background-image: url("dec121939worldmap.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(7px);
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}

body.france {
    margin: 0px;

    background-image: url("france/june251940worldmap.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(7px);
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}

body.barbarossa {
    margin: 0px;

    background-image: url("barbarossa/sep11942worldmap.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(7px);
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}

body.overlord {
    margin: 0px;

    background-image: url("overlord/oct11944worldmap.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(7px);
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}

body.conclusion {
    margin: 0px;

    background-image: url("conclusion/oct251945worldmap.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(7px);
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}




.smallVersion {
    font-size: 75%;
}

.standardtext {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    font-size: larger;
}

.standardtextcard {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
}

nav.menu { /*most outside building block of the page menu*/
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
}

span.menu { /*contains all content for the page menu*/
    border-radius: 0px;
    border-width: 5%;
    border-color: black;
    border-style: solid;
    font-size: 90%;
    
    padding: 3px;

    background-color: rgba(0, 0, 0, .50);

}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Aligns items horizontally */
    align-items: flex-start;         /* Aligns items vertically to the top */
}

nav.card { /*class for info cards*/
    /*position: fixed;*/
    padding: 5px 5px;
    margin-top: 25px;
    margin-bottom: 25px;

    background-color: rgba(0, 0, 0, .75);


    border-width: 5px;
    border-color: black;
    border-radius: 1px;
    border-style: solid;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    
    color: gainsboro;
}

.caption {
    font-size: smaller;
}

nav.body {
    margin: 0 auto;
    padding: 10px;
    width: 70%; /*constrains width to _% of page width*/

    background-color: rgba(0, 0, 0, .75);

    color: gainsboro;
}

nav.card.video-container {
    /*width: 640px;*/
    margin: 0 auto; /* centers the container itself */
}







#version {
    position: fixed;
    left: 10px;
    bottom: 10px;
}

p.title {
    font-weight: bold;
    color: gray;
    text-decoration: underline;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    font-size: x-large;
}

/* the non links in the menu */
.menu {
    color: darkorange;
    font-size: larger;
    align-content: center;
}

.menu a { /*default links*/
    color: black;
}

/* default links */
.menu a:link {
    color: black;
    text-decoration: none;
}

/* mouse over link*/
.menu a:hover {
    color: blue;
    /*text-decoration: underline overline dotted red;*/
}