/* Master Styles */

html {
}

body{
    background: #404040;
    font-family: "Oswald", sans-serif;
    border: 0;
    margin: 0;
    color: white;
    padding: 0;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
    overflow: no-display;
}

.flex-box {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nav styling */

nav {
    display: flex;
    justify-content: space-between;
    padding-left: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #404040;
}

/* Button for Phone */

.nav-button div {
    height: 3px;
    margin-top: 5px;
    background-color: white;
    width: 40px;
    border-radius: 25px;
}

.nav-button {
    display: none;
    margin: 5px 0 0 5px;
}

.right-side > .links {
    font-size: x-large;
    display: flex;
}

.right-side > span {
    display: none;
    margin-right: 20px;
}

.left-side {
    font-size: xx-large;
}

.link-wrapper {
    margin-right: 25px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s;
}

/* side-bar styling */

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    padding: 50px 10px 0 10px;
    background: white;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.overlay:target {
    opacity: 1;
    visibility: visible;
}

.side-bar > .links > .link-wrapper > a {
    color: black;
    font-size: xx-large;
}

.side-bar {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}

.close-overlay {
    border: none;
    background: white;
    font-size: 75px;
    padding-left: 20px;
    color: black;
    transition: color;
}

.overlay > a {
    text-decoration: none;
}

.close-overlay:hover {
    color: #606060;
}

/* */

.link-wrapper a{
    text-decoration: none;
    color: white;
    transition-delay: 0.05s;
}

span {
    font-size: x-large;
    color: white;
}

.link-wrapper a:hover{
    color: lightgrey;
}

.link-wrapper:hover {
    border-bottom: 2px solid white;
}

/* main styling */

.image-wrapper {
    align-items: center;
}

.image-wrapper > img {
    text-align: center;
    width: 50vw;
}

.image-content {
    margin-top: 8vh;
    margin-bottom: 10vh;
    display: flex;
    justify-content: space-evenly;
    background-image: radial-gradient(closest-side at 20% , #353535, #404040);
}

.content {
    margin:auto;
    display: block;
    align-self: center;
}

.description-wrapper {
    margin-right: 15px;
    text-align: center;
}

.description-wrapper > .description {
    font-size: x-large;
}

/* Circle Me for phones */

.circle-me > img {
    height: 200px;
}

.circle-me {
    display: none;
    justify-content: center;
}

/* Form Styling */

.newsletter {
    margin: 20px;
    font-size: xx-large;
}

.button-wrapper {
    display:flex;
    justify-content: center;
}

input[type="email"] {
    text-decoration: none;
    height: 35px;
    width: 180px;
    font-weight: 300;
    font-size: x-large;
    font-family: "Oswald", sans-serif;
    padding: 3px;
    text-align: center;
    margin-right: 10px;
}

button[type="submit"] {
    height:45px;
    width: 100px;
    font-size: medium;
    border-color: white;
    color: white;
    font-family: "Oswald", sans-serif;
    border-style: solid;
    background: transparent;
    transition: background-color;
}

button[type="submit"]:hover {
    background-color: white;
    color: black;
    border-color: black;
}

/* Transition */

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Footer */

footer {
    /*position: absolute;*/
    text-align: center;
    background: black;
    width: 100%;
    padding-bottom: 10px;
}


.links-wrapper {
    margin: 10px;
}

.links-wrapper > a {
    margin-right: 5px;
    text-decoration: none;
}

/* Responsive Options */

@media all and (max-width: 600px) {
    .image-wrapper > img {
        display: none;
    }
    .image-wrapper {
        display: none;
    }
    .description-wrapper {
        position: relative;
        align-content: center;
        margin: 5px;
    }
    footer {
        position: fixed;
        bottom: 0;
    }
    .links-wrapper > a > img {
        height: 30px;
    }
    .footer-message> h1 {
        font-size: medium;
    }
    .right-side > .links {
        display: none;
    }

    .right-side > span {
        display: block;
    }

    .left-side > span {
        display: none;
    }

    .left-side > a {
        display: block;
    }
    .circle-me {
        align-content: center;
        display: flex;
        justify-content: center;
    }
}

/*@media all and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {*/
/*    .image-wrapper {*/
/*        width: 52%;*/
/*    }*/
/*    .description-wrapper {*/
/*        left: 0;*/
/*    }*/
/*    footer {*/
/*        position: fixed;*/
/*        bottom:0;*/
/*    }*/
/*    .links-wrapper > a > img {*/
/*        height: 30px;*/
/*    }*/
/*    .footer-message> h1 {*/
/*        font-size: medium;*/
/*    }*/
/*}*/

/*@media all and (max-width: 1112px) and (max-height: 834px) and (orientation: landscape) {*/
/*    .image-wrapper {*/
/*        width: 52%;*/
/*    }*/
/*    .description-wrapper {*/
/*        left: 0;*/
/*    }*/
/*    footer {*/
/*        position: fixed;*/
/*        bottom:0;*/
/*    }*/
/*    .links-wrapper > a > img {*/
/*        height: 30px;*/
/*    }*/
/*    .footer-message> h1 {*/
/*        font-size: medium;*/
/*    }*/
/*}*/

/*@media all and (max-width: 1366px) and (min-height: 1024px) and (orientation: landscape) {*/
/*    .image-wrapper {*/
/*        width: 52%;*/
/*    }*/
/*    .description-wrapper {*/
/*        left: 0;*/
/*    }*/
/*    footer {*/
/*        position: fixed;*/
/*        bottom:0;*/
/*    }*/
/*    .links-wrapper > a > img {*/
/*        height: 30px;*/
/*    }*/
/*    .footer-message> h1 {*/
/*        font-size: medium;*/
/*    }*/
/*}*/

@media all and (max-width: 375px) {
    .description > p {
        font-size: medium;
    }
}

@media all and (max-width: 320px) {
    .description-wrapper {
        margin: auto;
        align-content: center;
        top: 27.5%;
    }
    .content {
        margin: auto;
    }
    .circle-me {
        display: flex;
        justify-content: center;
    }
}

