@import url(http://fonts.googleapis.com/css?family=B612:400,500,400);

* {
    box-sizing: border-box;
    font-family: 'Verdana';
    color: white;
}

html {
    background-color: purple;
}

html, body {
    margin: 0px;
    padding: 0px;
}

.nav ul {
    margin: 0px;
}

.nav li {
    display: inline;
}

.nav a {
    display: inline-block;
    padding: .5em;
    color: white;
    text-decoration: none;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, .3);
}

.main-nav {
    text-align: center;
    font-size: 1.1em;
    font-weight: lighter;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.main-nav li {
    padding: 0 1%;
}

.main-header {
    background-color: rgba(0,0,0,0.8);
    background-image: url(Images/btdx_image.jpeg);
    background-blend-mode: multiply;
    background-size: cover;
}

.web-title {
    text-align: left;
    margin: 0;
    font-size: 4em;
    font-weight: normal;
    color: white;
}

.web-title-large {
    font-size: 9em;
}

.content-section {
    margin: 1em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.section-header {
    font-family: Oetztype;
    font-weight: normal;
    text-align: center;
    font-size: 2.5em;
}

.about-ramaf-image {
    float: left;
    height: 200px;
    width: 200px;
    margin: 15px;
    border-radius: 50%;
}

.four-ramaf-image {
    display: block;
    margin-left: auto;
    margin-right: auto;

    width: 40%;
}

.main-footer {
    background-color: deeppink;
    color: white;
    padding: .25em 0;
    text-align: center;
}

.main-footer-container {
    display: flex;
    align-items: center;
}

.main-footer-container ul {
    flex-grow: 1;
    text-align: center;
}

.footer-nav li {
    padding: 0 .5em;
    text-align: center;
}

.footer-nav img {
    width: 64px;
    height: 64px;
}

.footer-nav a {
    text-align: center;
}

/* Default Button CSS */
.btn {
    text-align: center;
    vertical-align: middle;
    padding: .67em;
    cursor: pointer;
    color: white;
    border: 2px solid white;
    background-color: rgba(255,255,255, 0.1);
    border-radius: 4;
    font-size: 1em;
    font-weight: lighter;
    padding: 15px;
}

/* Header Buttons */
.btn-header {
    margin: .5em 15% 2em 15%;
    color: white;
    border: 2px solid white;
    background-color: rgba(255,255,255, 0.1);
    border-radius: 4;
    font-size: 1.5em;
    font-weight: lighter;
    padding-left: 2em;
    padding-right: 2em;
}

/* Download Buttons */
.btn-download {
    display:block;
    margin: .5em 15% 2em 15%;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    color: white;
    border: 2px solid white;
    background-color: rgba(255,255,255, 0.1);
    border-radius: 4;
    font-size: 1em;
    font-weight: lighter;
    padding: 15px;
}

/* Large Download Button */
.btn-download-main {
    
    font-size: 1.5em;
    font-weight: lighter;
    padding: 1.5em;
}

/* Hover over header button */
.btn-header:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Hover over download button */
.btn-download:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Hover over buttons */
.btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Large Image Display */
.page-main-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Center Text */
.center {
    text-align: center;
}

/* Center other elements */
.strong-center {
    margin:auto;
    width: 100%;
    padding: 10px;
}

.center-video {
    margin:auto;
    width: 100%;
    padding: 10px;
}

iframe {
    width: "1120";
    height: "630";
}

/* Style The Dropdown Button */
.dropbtn {
    display: inline-block;
    padding: .5em;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    background-color: rgba(255,255,255, 0);
    text-align: center;
    font-size: 1.1em;
    font-weight: lighter;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    font-weight: lighter;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-weight: lighter;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: lighter;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: rgba(255,255,255, 0.3);
}