@charset "UTF-8";

html,
body {
    height: 100%;
}

body {
    color: #fff;
    text-align: center;
    text-shadow: 0rem 0.01rem 1rem rgba(0, 0, 0, 0.45);
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: #212529;
    font-weight: bold;
    text-shadow: none;
}

li {
    font-size: 13pt;
}

.bg {
    height: 100%;
    background: url('images/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.btn-main {
    color: #333;
    /*text-shadow: none;
    */background-color: #fff;
    height: 3em;
    width: 10em;
    cursor: pointer;
}

.btn-main:hover {
    background-color: #ddd;
    /*color: #000;*/
}

.center {
    text-align: center;
}

.cover {
    padding: 0 1.5rem;
}

.cover-container {
    margin-right: auto;
    margin-left: auto;
}

.cover-heading {
    font-size: 72pt;
}

.cover-subheading {
    font-size: 32pt;
}

.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}

.inner {
    padding: 2rem;
    color: white;
}

.site-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.5);
}

.site-wrapper-inner {
    display: table-cell;
    vertical-align: top;
    font-size: 14pt;
}

.footer {
    height: 50px;
    color: #bbb;
    text-shadow: none;
}

#olayTeamImg {
    border: 1px solid #021a40;
}

/* Creds to w3schools for dropdown kek */

/* Dropdown button */
.dropbtn {
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
}

/* 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;
    border-radius: 0px 0px 5px 5px;
}

/* Links inside the dropdown */

.dropdown-content a {
    color: black;
    padding: 6px 8px;
    display: block;
    font-size: 12pt;
    font-weight: normal;
}

/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 6px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
    display: block;
}


@media screen and (max-width: 500px) {
    .cover-container {
        width: 95%;
    }
}

@media (min-width: 40em) {
    .site-wrapper-inner {
        vertical-align: middle;
    }

    .cover-container {
        width: 100%;
    }
}

@media (min-width: 62em) {
    .cover-container {
        width: 42rem;
    }
}
