/* resume for css
*Author Douglas Coulsey
*Author Url doug.programmingandweb.com/doug
*/
/*===============TOC========================

1. General styles
2.typography
3.Buttons
/*------------------ 1. General Styles-------------------------*/

body{
    position: initial;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: rgb(202, 202, 202);
    background-position: center center;
    background-size: calc(100% + 25px);
    background-repeat: repeat;
    background-attachment: fixed;
    overflow-y: auto;
    overflow-x: hidden;
}


section{
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 25px;
    border-radius: 20px;
}

.page{
    display: flex;
    flex-flow: column;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0px 70px 60px;
    background-color: #883838;
    box-shadow: 0px 0px 40px -10px rgba(0, 0, 0, .2);
    border-radius: 40px;
    backface-visibility: hidden;
}

.list{
    margin-right: 15px;
    margin-left: 30px;
    margin-top: 20px;
}

/* 2. typography*/

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

.logo-text {
    display: inline-block;
    font-family: "Marck Script", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    color: rgb(41, 44, 182);
}

.logo-text span{
    font-weight: 400;
}

/*3. Buttons*/
.btn-primary,
.btn-secondary,
button,
input[type="button"],
input[type="submit"]{
    display: inline-block;
    position: relative;
    padding: .8em 2.1em;
    margin-bottom: .75em;
    margin-right: .25em;
    margin-top: 25px;
    font-size: 1em;
    line-height: 1.2;
    border: 0;
    outline: 0;
    border: 2px solid #007ced;
    color: #fff;
    text-shadow: none;
    background-color: #020202;
    border-radius: 30px;
    font-family: "Agu Display", serif;
    -webkit-transition: all 0.3 ease-in-out;
    -moz-transition: all 0.3 ease-in-out;
    -o-transition: all 0.3 ease-in-out;
    -ms-transition: all 0.3 ease-in-out;
    transition: all 0.3 ease-in-out;
    box-shadow: 0px 10px 10px -8px rgba(0,0,0.78);
    font-size: large;
}

.btn-primary:last-child,
.btn-secondary:last-child,
button:last-child,
input[type="button"]:last-child,
input[type="submit"]:last-child {
    margin-right: 0; 
}

.btn-primary:hover,
.btn-primary:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus{
    background-color: #ffffff;
    color: #8a8181;
    border: 2px solid #007ced;
}

.btn-secondary{
    border-color: #fff;
    color: #ffffff;
    background-color: #000000;
    box-shadow: 0px 10px 10px -8px rgb(27, 27, 75);
}

.btn-secondary:hover,
.btn-secondary:focus{
    color: #999494;
    border-color: aliceblue;
    background-color: #fff;
}

.home-buttons{
    text-align: center;
}

.nokora-thin {
    font-family: "Nokora", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .nokora-light {
    font-family: "Nokora", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .nokora-regular {
    font-family: "Nokora", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .nokora-bold {
    font-family: "Nokora", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .nokora-black {
    font-family: "Nokora", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  /* nav bar */
  .topNav {
    overflow: hidden;
    background-color: #757575;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}

.topNav a:first-child{
    margin-left: 35%;
}


.topNav a{
    float: left;
    display: block;
    color: #222222;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 19px;

}

.topNav a:hover{
    background-color: blue;
    color: white;
}

.topNav .icon {
    display: none;
}

.topNav a.active{
    background-color: rgb(27, 27, 75);
    color: aliceblue;
}

/*media query to make nav bar vanish*/
@media screen and (max-width: 600px){
    .topNav a:not(:first-child){
        display: none;
    }
    .topNav a.icon{
        margin-left: 0;
        float: right;
        display: block;
    }
    .topNav.responsive{
        position: relative;
    }
    .topNav.responsive .icon{
        position: absolute;
        right: 0;
        left: 0;
    }
    .topNav.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
}

/* END nav */