@import url("https://use.typekit.net/oyi2iih.css");

 header{
    width: 100vw;
    height: 60px;
    background-color: white;
    
    position: sticky;
    top: 0px;
    font-family: "Ubuntu Sans", sans-serif;;
}
.headercontainer{
    display: flex;
    
}

.nav{
    width: 100vw;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 5px;
}
.menu{
    font-size: 12px;
    text-decoration: none;
    list-style-type: none;
  
    display: inline;
}

a{
    text-decoration: none;
    color: black;
}
#logo{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 5px;
    left: 5px;
}
#logo:hover{
    
    animation: imageRotate 2s linear infinite;
       
    }
 @keyframes imageRotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
.linkicons{
    display: flex;
    gap: 20px;
   justify-content: flex-end;
   padding-right: 30px;

}
.linkicons img{
    width: 20px;
    
}
.footercontainer{
    width: 100vw;
    align-items: right;
    
}
.submenu{
   
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 24px;
    text-decoration: none;
    max-width: 100vw;
   
}
.mywork.submenu{
    padding-left: 10vw;
}
#mywork .mywork, #about .about, #contact .contact{
    font-weight: 600;
    font-size: larger;
}
#all .all, #highlight .highlight, #ceramics .ceramics, #photography .photography{
    font-weight: 600;
    font-size: larger;
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 90px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: lightgrey; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 3px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
