html{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    color:white;
    background-color: #250c4d;
}
img{
    width: 300px;
    height: auto;
    margin: 30px;
}

video{
    margin: 30px;
    min-width: 300px;
    max-width: 500px;
    height:auto;
}
.row {
    display: flex;
    flex-direction: row;
}

.column{
    display: flex;
    flex-direction: column;
}

.center{
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

#banner{
    color: white;
    background-image: url("../images/banner-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
#banner-content{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
#banner h1{
    font-size: 3rem;
    margin: 20px;
}
#banner img{
    margin:40px;
    width: 20rem;
}

nav{
    max-width: 100%;
    border-color: white;
    border-width:1px;
    border-top-style: solid;
    border-bottom-style: solid;
}
.nav-button {
    margin: 0 10px;
    padding:20px;
    width: max-content;
    height: 100%;
}
.nav-button:hover {
    background-color: #241f61;
    margin: 0 10px;
}
.nav-button:active {
    background-color: #434390;
    margin: 0 10px;
}
h2{
    margin-top: 25px;
    font-size: 2rem;
}
p {
    margin:1rem;
    text-align: center;
    line-height: 2;
}
a{
    text-decoration: none;
    color:white;
}

footer{
    background-color: black;
}
#footer{
    padding: 50px;
}