html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: rgb(234, 234, 234);
}

.header {
    position: relative;
    background-color: rgb(34, 34, 34);
    top: -10px;
    height: 150px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.header img {
    float: left;
    height: 150px;
    vertical-align: middle;
}

.header h2 {
    float: center;
    width: 90%;
    text-align: center;
    padding-top: 55px;
    font-family: Verdana;
    font-weight: bold;
    color: rgb(234, 234, 234);
}

.column {
    float: left;
    padding: 15px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.menu {
    width: 20%;
}

.content {
    width: 55%;
}

.menu a {
    text-decoration: none;
    color: currentColor;
}

.menu ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li 
{
    padding: 2px;
    margin-bottom: 2px;
    border: 2px solid #000000;
    font-family: Futura, Tahoma, sans-serif;
    color: #ffffff;
    border-radius: 5px 5px;
    background-color: rgba(32, 2, 2, 0.51);
    text-align: center;
}

.menu li:hover {
    background-color: #ffffff;
    color: #cc0323;
    font-weight: bold;
}

p {
    font-family: Tahoma;
    font-size: 1em;
}

.footer {
    position: relative;
    margin: auto;
    padding: 10px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 75px;
    background-color: rgba(34, 34, 34, 1);
    color: rgb(234, 234, 234);
    text-align: center;
}

.footer a {
    color: rgb(234, 234, 234);
}

.footer a:hover {
    color: #cc0323;
}

#button {
    border: 2px solid #000000;
    float: left;
    position: relative;
    left: 229px; 
    bottom: -20px;
    border-radius: 5px;
    background-color: #cc0323;
    height: 30px;
    width: 150px;
}

#button p
{
    position: relative;
    bottom: 10px;
    font-size: 0.8em;
    color: #acd1b2;
    text-align: center;
}

.bold
{
    font-family: tahoma;
    font-weight: bold;
    font-size: 1.2em;
    font-variant: small-caps;
    color: #ffffff;
}

.container {
    float: center;
    background-color: rgb(34, 34, 34);
    font-family: Arial;
    border-radius: 15px;
}

.headmenu {
    padding: 0px 0px 0px 70%;
}

.container a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropFTC, .dropFRC {
    position: relative;
    display: inline-block;
    text-alignment: right;
}

.FTCbtn, .FRCbtn {
    cursor: pointer;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
}

.container a:hover, .dropFTC:hover .FTCbtn, .dropFRC:hover .FRCbtn {
    background-color: lightgrey;
    color: black;
}


.FTC-content, .FRC-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 175px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    text-alignment: center;
    z-index: 1;
}

.FTC-content a, .FRC-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropFTC:hover .FTC-content, .dropFRC:hover .FRC-content {
    display: block;
}

.dropFTC:hover .FTCbtn, .dropFRC:hover .FRCbtn {
    background-color: lightgrey;
}

.FTC-content a:hover, .FRC-content a:hover {
    background-color: #ddd;
}
