/* 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: black;
    font-weight: 500;
}

/* 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; */
}


.about-pic{
    border-radius: 2reem;
    height: 450px;
    border: 500px;
    border: 5px solid #b63b3b; 
    border-style: dashed;
    border-radius: 20px 20px 20px 20px;

}

.section__pic-container{
    height: 400px;
    width: 400px;
    margin: auto 0;
    border: 60px;
    
}

.row {
    display: flex;
    
  }
  
.about{
    text-align: center;
    color: rgb(177, 66, 46);
}

.column{
    flex: 50%;
    column-gap: 20px;
    font-weight: bold;
    padding-left: 100px;
}

.column{
flex: 50px;
column-gap: 20px;
height: 450px;

}

.socials{
    
    font-size: 50px;
    padding-left: 10px;
    
}
  

.btn{
    background-color: rgb(177, 66, 46);
    color: black;
    height: 60px;
    width: 700px;
    font-size: 30px;
    border-style: dashed;
    border-radius: 20px 20px 20px 20px;
    font-family: 'Caveat';
  }

/* FOOTER SECTION */

footer{
  
    max-width: 100%;
    height: auto;
    background-color: rgb(177, 66, 46);
  }
  
  footer p{
    color: white;
    text-align: center;
    font-size: 15px;
  }