/* MASTER STYLES */

body {
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: hidden;
}

/* NAVBAR CONTENT STYLES */

.navbar-wrap {
    padding: 10px 40px;
    background: #917d6e;
}

.navbar-anchors-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
}

.navbar-anchor-wrap {
    margin-left: 2%;
    margin-right: 2%;
}

.navbar-anchors-wrap a {
    font-family: 'Monoton', cursive;
    font-size: 1.1em;
    text-decoration: underline transparent;
    color: black;
    padding: 5px 5px;
    border-radius: 5px;
    transition: background-color 1s, box-shadow 2s;
}

.navbar-anchors-wrap a:hover {
    background-color: #A7978B;
    box-shadow: 5px 10px 20px;
}

/* MAIN CONTENT STYLES */

.main-wrap {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding: 5% 3%;
    background:rgb(211, 208, 208);
    margin-bottom: 2%;
}

.main-text-wrap {
    font-family: 'Poppins', sans-serif;
    max-width: 500px;
    line-height: 1.5;
    margin-right: 5%;
}

.fontChange {
    transition: background-color 0.5s, color .5s;
    border-radius: 5px;
}

.fontChange:hover {
    background-color: #A7978B;
    color: white;
}

.appearingDot1 {
    animation: appearingText 1s infinite;
}

.appearingDot2 {
    animation: appearingText 1s infinite;
    animation-delay: .25s;
}

.appearingDot3 {
    animation: appearingText 1s infinite;
    animation-delay: .5s;
}

@keyframes appearingText {
    100% {
        opacity: 0;
    }
}

.styledName {
    font-family: 'Monoton', cursive;
    color: #917d6e;
}

.main-photo-wrap {
    border-radius: 25px;
    max-width: 250px;
    margin-left: 5%;
}

.main-photo-wrap img {
    width: 100%;
    object-fit: contain;
    border-radius: 25px;
    transition: background-color 1s, box-shadow 2s;
}

.main-photo-wrap img:hover {
    background-color: #A7978B;
    box-shadow: 5px 10px 20px;
}

.main-button-wrap {
    margin-top: 1%;
}

.main-button-wrap a {
    border: solid black 1px;
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: underline transparent;
    color: black;
    transition: color 0.5s, background-color 0.5s;
}

.main-button-wrap a:hover {
    color: white;
    background: #A7978B;
    border: #A7978B solid 1px;
}

/* TECHNOLOGIES */

.technology-content {
    margin-top: 8%;
}

.technology-text-wrap {
    font-family: 'Monoton', cursive;
    text-align: center;
}

.technology-images-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.technology-image-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2% 5%;
}

.technology-image-wrap img {
    width: 50px;
    height: 50px;
}

.technology-description-wrap {
    font-family: 'Poppins', sans-serif;
}

/* PROJECTS CONTENT STYLES */

.projects-content {
   padding-top: 1%;
}

.projects-text-wrap {
    text-align: center;
    font-family: 'Monoton', cursive;
    z-index: 1;
}

.projects-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: -5%;
    z-index: 1;
}

.project-wrap {
    display: flex;
    flex-direction: column;
    margin: 5%;
    z-index: 1;
}

.project-text-wrap {
    max-width: 250px;
    margin-bottom: 1%;
    font-family: 'Poppins', sans-serif;
}

.project-text-wrap p {
    text-align: justify;
    line-height: 1.5;
}

.project-text-wrap a {
    text-decoration: underline transparent;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.5s;
}

.project-text-wrap a:hover {
    background-color: #A7978B;
}

.project-anchors-wrap {
    display: flex;
    margin-bottom: 8%;
    z-index: 1;
}

.project-anchor-wrap {
    margin-right: 8%;
    margin-bottom: 8%;
    z-index: 1;
}

.project-anchor-wrap a {
    color: black;
    text-decoration: underline transparent;
    border: black solid 1px;
    border-radius: 5px;
    padding: 5px 10px;
    transition: color 0.5s, background-color 0.5s;
}

.project-anchor-wrap a:hover {
    color: white;
    background: #A7978B;
    border: #A7978B 1px solid;
}

.project-image-wrap-website {
    max-width: 250px;
    max-height: 300px;
    box-shadow: 5px 10px 20px;
    border-radius: 5px;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 1;
}

::-webkit-scrollbar {
    display: none;
}

.project-image-wrap {
    max-width: 250px;
    max-height: 230px;
    box-shadow: 5px 10px 20px;
    border-radius: 5px;
    z-index: 1;
}

.project-image-wrap img {
    width: 100%; 
    border-radius: 5px;
}

.project-image-wrap-website img {
    width: 100%;
    border-radius: 5px;
}

/* CONTACT CONTENT STYLES */

.contact-content {
    background:rgb(211, 208, 208);
    margin-top: 8%;
    margin-bottom: -5%;
}

.contact-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    padding: 10px 40px;
    margin-left: 10%;
    margin-right: 10%;
}

.contact-text-wrap h1 {
    font-family: 'Monoton', cursive;
}

.contact-text-wrap p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.contact-text-wrap a {
    text-decoration: underline transparent;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.5s; 
}

.contact-text-wrap a:hover {
    background-color: #A7978B;
}

.contact-anchors-wrap {
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-anchor-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2% 5% 5%
}

.contact-anchor-wrap a {
    margin-bottom: -15%;
    font-family: 'Poppins', sans-serif;
}

.contact-anchor-wrap p {
    font-family: 'Poppins', sans-serif;
}

.contact-anchor-wrap img {
    max-width: 55px;
    transition: transform 1.5s;
}

.contact-anchor-wrap img:hover {
    transform: scale(1.4);
}

/* FOOTER STYLES */

.footer-content {
    background: #917d6e;
    padding: 10px 40px; 
}

.footer-anchors-wrap {
    display: flex;
    justify-content: center;
}

.footer-anchors-wrap a {
    text-decoration: underline transparent;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.footer-text-wrap {
    text-align: center;
    font-size: smaller;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

/* ABOUT STYLES */

.resume-content {
    padding-top: 5%;
}

.resume-text-wrap {
    text-align: center;
}

.resume-title-text-wrap {
    font-family: 'Monoton', cursive;
    text-align: center;
}

.resume-subtitle-text-wrap {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 1.5;
    margin: 3% 10%;
}

.documents-button-wrap {
    display: flex;
    justify-content: space-evenly;
}



/* HOBBIES STYLES */

.hobbies-wrap {
    background:rgb(211, 208, 208);
    padding-top: 5%;
    padding-bottom: 1%;
    margin-top: 5%;
}

.hobbies-text-wrap {
    text-align: center;
    font-family: 'Monoton', cursive;
}

.hobbies-activities-wrap {
    margin: 8%;
}

.hobbies-activity-wrap1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8%;
    /* animation: fadeIn 2s linear; */
}

/* @keyframes fadeIn {
    0% {
        opacity: 0%;
    }
} */

.hobbies-activity-image-wrap {
    max-height: 230px;
    max-width: 250px;
    box-shadow: 5px 10px 20px;
    margin-right: 5%;
    margin-bottom: 5%;
    border-radius: 5px;
}

.hobbies-activity-description-wrap {
    font-family: 'Poppins', sans-serif;
    max-width: 500px;
    text-align: justify;
}

.hobbies-activity-description-wrap a {
        text-decoration: underline transparent;
        color: black;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.5s;
}

.hobbies-activity-description-wrap a:hover {
    background-color: #A7978B;
}

.hobbies-activity-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.hobbies-activity-wrap2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8%;
    /* animation: fadeIn 2s linear; */
   
    
}

.hobbies-activity-wrap3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8%;
    /* animation: fadeIn 2s linear; */
}

