@charset "UTF-8";
/* CSS Document */

#clouds
{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: lightblue;
    z-index: 0;
}
h1
{
    width: 100%;
    text-align: center;
}
.center-box
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.content-box
{
    background-color: rgba(255,255,255, 0.8);
    border-radius: 0.8rem;
    padding: 1rem;
    width: 60%;
    max-width: 60%;
    min-height: 30rem;
    margin-bottom: 2rem;
    border: 0.4rem solid darkgreen;
    z-index: 3;
}
.content-box p
{
    text-align: justify;
}
.content-box img
{
    float: right;
    position: relative;
}
.title-row
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
h1, h2, h3, h4, h5
{
    font-family: "Helvetica Neue", Helvetica, "sans-serif";
}
p
{
    font-family: "Liberation Serif", Times, "Times New Roman", "serif";
}
#navbar, #footer
{
    width: 100vw;
}