/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

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

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

a {
	color: #4fa3ab;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ========================

    GLOBAL/CUSTOM CLASSES

======================== */

.browserupgrade {
    display: none;
    padding: 0.5rem 1rem;
    background: #FFEB3B;
    color: #000;
    text-align: center;
}

.no-margin-top {
	margin-top: 0;
}

.bold {
	font-weight: bold;
}

/* ===================

    HEADER

=================== */


/* ===================

    MAIN CONTENT

=================== */

.page-wrapper {
    min-height: 100vh;
    background: url('../img/background.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.content {
    margin: 2rem;
    max-width: 800px;
    padding: 3rem;
    color: #222222;
	background: #ffffff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	box-shadow: 5px 5px 20px #000000;
}

.website-logo {
	text-align: center;
}

.website-logo img {
    max-width: 250px;
}

.social-media h3 {
    text-align: center;
}

.social-icons {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social-icons li {
    display: inline-block;
    vertical-align: middle;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    background: #4fa3ab;
    margin: 0 6px;
    transition: .8s;
}

.social-icons li a {
    line-height: 2.25;
    color: #ffffff;
    transition: .3s;
}

.social-icons li:hover {
    background: #ffffff;
}

.social-icons li:hover > a {
    color: #4fa3ab;
}



/* ===================

    FOOTER

=================== */











/* ==========================================================================
   Media Queries
   ========================================================================== */



@media only screen and (min-width: 768px) {
    .content {
        position: absolute;
        top: 50%;
        left: calc(50% - 400px);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        
    }
	.social-icons li a {
		line-height: 2;
	}
}

@media only screen and (min-width: 1024px) {
    body {
        font-size: 115%;
    }

    .content {
        width: 50%;
    }
}

@media only screen and (min-width: 1280px) {
    body {
        font-size: 125%;
    }
    
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.container {
    width: 100%;
    max-width: 80rem;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}