:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: 'Inter var', sans-serif; }
}
body{
    margin: 0;
    height: 100%;
}
body{
    margin: 0 0 36px;
}
h1 {
    font-size: 80px;
    margin-top: 0;
    margin-bottom: 0;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.descriptiontext {
    margin: 0 30px 0 30px;
}

.flexcontainer {
    display: flex;
}
.flexrow {
    padding-top: 10px;
    flex-direction: row;
    padding-bottom: 10px;
}
.flexcolumn {
    flex-direction: column;
}
.centered {
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.flexitem {
}

.imgbox {
    align-items: center;
    display: flex;
}

.showimage{
    max-width: 400px;
    margin: auto 40px auto 0; 
    border-radius: 10px;
    border: 1px solid;
    border-color: #DFDFDF;
}
.card{
    margin: 20px 30px 20px 30px;
    background-color: #e4f6e3;
    border: 1px solid;
    border-color: #DFDFDF;
    padding: 15px;
    border-radius: 10px;
    max-width: 940px;
    text-decoration: unset;
    color: black;
}

@media only screen and (max-width: 800px) {
    .card {
	flex-direction: column; 
    }	
    .imgbox {
	display:flex;
	justify-content: center;
    }
    .showimage {
	margin-right: unset;
	margin: 0 auto;
    }
}
.card:hover{
    background-color: #94d98f;
    transition: 100ms linear;
}

.card:hover>div>.showimage{
    border-color: #bfbfbf;
    transition: 100ms linear;
}

.navtitle {
    font-size: 25px;
    color: white;
}
.maindescription {
    max-width: 940px;
}
.cardDescription {
    max-width: 500px;
}
#federalogo {
    height: 80px;
    padding-right: 10px;
}
#footer {
    background-color: #579e52;
    color: white;
    box-shadow: 0 0 5px #579e52;
    font-size: 11px;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 36px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
