/* GENERAL */

* {
    margin: 0;
    padding: 0;
}

.namehead{
    font-family: 'Franklin Gothic Medium';
    font-size: 40px;
    color: rgb(192, 61, 10);
}

.namehead:hover{
    cursor: default;
}

.para{
    font-size: 20px;
    font-family: 'Caveat';
    font-weight: bold;
    color: rgb(32, 11, 11);
}


body{
    font-family: 'Caveat' ;
}

html{
    scroll-behavior: smooth;
}

p{
    color: rgb(85, 85, 85);
}

/* TRANSITION */

a, 
.btn {
    transition: all 300ms ease;
}


/* DESKTOP NAV */


nav,
.nav-links {
    display: flex;
}

nav{
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover{
    color: rgb(163, 49, 7);
    text-decoration: underline;
    /* text-underline-offset: 1rem; */
}

.animated{
    text-align: center;
    color: rgb(196, 57, 14);
}

.img-gallery{
    padding-left: 50px;
    width: 90%;
    margin: 50px auto;
    display: grid
    grid-template-columns: repeat;
    grid-gap: 30px
}

.img-gallery img {
    cursor: pointer;
}

.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 7px rgba(68, 77, 136, 0.2);
}

.full-img{
    width: 1000%;
    height: 1000vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 100;
}

.full-img img{
    height: 500px
}

.full-img span{
    color: rgb(196, 57, 14);
    cursor: pointer;
}



/* FOOTER SECTION */

footer{
  
    max-width: 100%;
    height: auto;
    background-color: rgb(177, 66, 46);
  }
  
  footer p{
    color: white;
    text-align: center;
    font-size: 15px;
  }