/* GENERAL */

html {
    position: relative;
    height: 100%;
}

/* body {
    margin: 0;
    background: url("../images/redwoodNatPark.jpg");
    background-size: cover;
    background-attachment: fixed;
    max-width: 100%;
} */

.top-margin {
    margin-top: 30vh;
}

.btm-margin {
    margin-top: 30vh;
}

.nkLogo {
    outline: 2px solid white;
    outline-offset: 6px;
    font-weight: 700;
}

.title-info {
    color: rgb(255, 255, 255);
    animation-name: fadeIn;
    animation-duration: 5s;
}

/* Controls fade in animation */
@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1; }
}

h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    text-shadow: 4px 4px 4px black; 
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
h3, h4, h5 {
    color: rgb(255, 255, 255);
    text-shadow: 4px 4px 4px black; 
    font-family: 'Raleway', sans-serif;
}
h6 {
    color: rgb(0, 0, 0);
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.section-spacer {
    padding: 200px 0 200px 0;
}

.card-about {
    background-color: rgba(245, 245, 245, 0.863);
    margin-bottom: 20px;
    padding: 20px 20px 20px 20px;
    box-shadow: 0px 5px 5px;
}


.btn-contact {
    margin-bottom: 5px;
}
/* FOOTER */

#footertxt {
    text-align: center;
    text-shadow: 4px 4px 8px rgba(36, 110, 17, 0.932); 
    font-weight: 600;
    color: whitesmoke;
}

.footpos {
    display: flex;
    align-items: center;
}

footer {
    border-top: 12px solid rgba(36, 110, 17, 0.932);
    background-color: rgb(48, 53, 53);
    margin-top: 20em;
    padding-top: 20px;
    padding-bottom: 15px;
    position: 0;
}

/* ABOUT PAGE */

.aboutImg {
    height: 80%;
    width: 80%;
    margin-bottom: 30px;
    border-radius: 3%;
}

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

ul {
    list-style: none;
}

/* PORTFOLIO PAGE */

.tech-logo {
    width: 100px;
    height: 100px;
}

.card-portfolio {
    background-color: rgba(245, 245, 245, 0.863);
    text-shadow: 1px 1px 20px rgb(160, 160, 160); 
    margin-bottom: 10px;
    box-shadow: 0px 5px 5px;
}

.portImg {
    width: 60%;
    height: 50%;
}

.project-title {
    border-radius: 5px;
    color: rgba(66, 64, 64, 0.664);
}

.project-description {
    max-width: 388.8px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 767px) {
  body {
    margin: 0;
    background: url("../images/redwoodNatParkSmall.jpg");
    background-size: auto;
    background-attachment: fixed;
  }
}

@media only screen and (min-width: 768px) {
  body {
    margin: 0;
    background: url("../images/redwoodNatPark.jpg");
    background-size: cover;
    background-attachment: fixed;
    max-width: 100%;
  }
}

