html{
    scroll-behavior: smooth;
}
body{
    background-color: rgb(245, 227, 206);
    font-family:"Sour Gummy", serif;
}





/* Navigator */

.frame{
    margin: 30px 150px;
    display: flex;
    flex-direction: column;
}

.navigator{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

li{
    display: inline;
    align-self: center;
    margin: 0;
    margin-left: 15px;
}

ul{
    margin: 0;
    align-self: center;
}

.site-name{
    margin: 0;
    font-weight: 800;
    font-size: 30px;
    color: #5e5444;
}


.nav-menu{
    font-weight: 800;
    font-size: 16px;
}


a{
    color: #342b1d;
    text-decoration: none;
}

a:hover{
    color: #ffc2b0;
    transition: 0.3s;
}

a.site-name:hover{
    color: #5e5444;
    text-decoration: none; 
    transition: none; 
    pointer-events: auto;
}







/*dashboard*/

.dashboard{
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    align-items: center;
}

.introduction{
    font-weight: 700;
    font-size: 50px;
    color: #5e5444;
}

.sample{
    transition: none;
    color: #bdaf99;
}

.highlight-1{
    transition: none;
    color: #bdaf99;
}

.highlight-2{
    transition: none;
    color: #bdaf99;

}






/*Recent Works*/

.recent-works{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recent-menu{
    margin-top: 100px;
    font-weight: 800;
    font-size: large;
    align-items: center;
    align-self: center;
}
.content{
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    flex-direction: row;
    width: 100%;
    align-self: center;
}

.rectangle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    max-width: 750px;
    background-color: transparent;
    border: 2px solid #5e5444;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.duck-image{
    max-width: 400px;
    height: auto;
    margin-right: 20px;
    margin-bottom: 10px;
}

.text{
    flex: 1;
    text-align: center;

}

.text p{
    font-weight: 500;
    font-size: 20px;
    color: #7b7264;
    text-align: center;
    margin-bottom: 20px;
}

.button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff00;
    color: black;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    font-family:"Sour Gummy", serif;

  }
  
  .button:hover {
    background-color: transparent;
    color: #ffc2b0;
    border: 2px solid #ffc2b0;
    transition: 0.3s;
  }
  
  .crochet{
    margin-top: 10px;
  }






  /* Works */

  .career{
    font-weight: 800;
    font-size: larger;
    margin-top: 100px;
    align-self: center;
  }
  .work-frame{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .work{
    margin: 0;
    font-weight: 600;
    font-size: larger;
    color: #5e5444;
  }

  .work li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }






  /* Contact */


  .contact-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
  }

  .contact{
    align-self: center;
  }




  /*Mobile Ansicht*/


@media (max-width: 850px) {
    .frame{
        margin: 30px 10px;
        display: flex;
        flex-direction: column;
    }
    .dashboard{
        align-items: center;
        align-self: center;
    }
    .content{
        flex-direction: column;
        align-items: center;
        align-self: center;
    }
    .duck-image{
        margin-right: 0;
        margin-bottom: 10px;
        max-width: 300px;
    }
    .text{
        text-align: center;
    }
    .introduction{
        font-weight: 700;
        font-size: 40px;
        color: #5e5444;
        text-align: center;
    }
}