*{
box-sizing: border-box;
}
@font-face{
    font-family: myFont;
    src: url(Nexa-ExtraLight.ttf);
}
body{
    color: black;
    font-family: myFont;
}
nav {
    position: fixed;
    z-index: 1;
    top: 0;
    margin-bottom: 20px;
    width: 100%;
    height: 88px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(38, 38, 39, 0.958);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    backface-visibility: hidden;
    transform: translateZ(0px);
    transition: 0.3s;
  }
  nav a{
    font-family: 'Cormorant Garamond', serif;
    color: white;
    text-decoration: none;
  }
  nav img {
    height: 40px;
  }
  
  .burger {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    padding: 0;
    width: 82px;
    height: 82px;
    font-size: 30px;
    color: rgb(119, 117, 117);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  
  .burger i:last-child {
    display: none;
  }
  
  body.open .burger i:first-child {
    display: none;
  }
  
  body.open .burger i:last-child {
    display: block;
  }
  
  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(27 32 44 / 70%);
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: 0.3s;
  }
  
  body.open .overlay {
    visibility: visible;
    opacity: 1;
  }
  
  nav button {
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  
  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 100%;
    padding: 18px 20px 20px;
    background-color: rgba(38, 38, 39, 0.958);
    box-shadow: 0 0 20px rgb(0 0 0 / 70%);
    translate: 100% 0;
    transition: 0.3s;
  }
  
  body.open aside {
    translate: 0;
  }
  
  aside a {
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    color: #f7f7f7;
  }
  
  aside h3 {
    margin: 40px 0 10px;
    color: white;
    font-weight: 400;
    font-size: 16px;
  }
  .logo img{
   width: 110px;
   height: 90px;
  }
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(38, 38, 39, 0.958);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

.hero{
    background-image: url(media/MYKEVISUALS\ 39.jpg);
    width: 100%;
    height: 90vh;
    background-position: center;
    background-size: cover;
    margin-top: 80px;
}
.active{
    color: darkslategray;
}
/* ABOUT */
.info h2{
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}
.info p{
    text-align: center;
    justify-content: center;
    padding: 30px;
}
.more{
    border-top: 1px solid black;
    margin-top: 20px;
}
.image img{
    width: 500px;
    height: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}
.about p{
    padding: 0 20px;
}
.info button{
   margin-top: 20px;
   padding: 10px;
   color: black;
}
.text img {
    width: 500px;
    height: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
.bio{
    text-align: center;
}
.padding{
    padding:0 40px;
}
@media screen and (max-width: 480px){
    .about{
        margin-top: 20px;
        display: block;
    }
    .about img{
        width: 200px;
        height: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }
    .about button{
        display: block;
        margin-left: auto;
        margin-right: auto;
     }
     .text img {
        width: 200px;
        height: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
    .image img{
      width: 55%;
      height: 45vh;
  }
}
/* GALLERY */
.row {
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create two equal columns that sits next to each other */
  .column {
    -ms-flex: 50%; /* IE 10 */
    flex: 50%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }
  .gallery{
    justify-content: center;
    text-align: center;
  }
  .text{
    font-family: 'Cormorant Upright', serif;
    font-size: 30px;
    padding-top: 110px;
  }
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 12px;
  }
  .btn:hover {
    background-color: #ddd;
  }
  
  .btn.active {
    background-color: #666;
    color: white;
  }
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #555;
  }
  .dark-mode {
    background-color: black;
    color: white;
  }
footer{
    background-color: rgb(77, 78, 79);
    height: 10vh;
    text-align: center;
    justify-content: center;
    opacity: 0.7;
}
.footer-text{
    color: white;
}
.footer-text a{
    color: bisque;
    text-decoration: none;
}