* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #D8DACA;
}
nav {
  font-family: "Kavoon", serif;
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  background-color: #2C3424;
  padding: 17px;
  
}

nav a {
    color: #D8DACA;
    text-decoration: none;
    padding: 30px;
}

nav a:hover {
    color: #708086;
    text-decoration: line-through;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

#box { 
    width: 90%; 
    height: auto; 
    background-color: #859581; 
    justify-self: center; 
    margin-top: 50px;
    display: grid;
     /* grid-template-columns: 300px 1fr;  */
    grid-template-columns: 1.1fr 2fr;
    outline: 5px solid #2C3424;
}

#box img {
     width: 100%;
     height: auto;
     padding: 10px;
     align-self: center;
}

.text h1 {
    font-size: 70px;
    text-align: center;
    padding: 40px;
    color: #EFE7DB;
}

.text {
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 30px;
    color: #EFE7DB;
}

.text p {
    font-weight: bold;
}

.me {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background-color: #2C3424;
}

#about-me {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-self: center;
    padding: 80px;
}

#about-me p {
    padding: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 30px;
}

#about-me img {
    width: 100%;
    height: auto;
}

.figma {
    color: #2C3424;
    font-size: 20px;
    margin: 20px;
}

.figma:hover {
    color: #859581;
}


