html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#top {
  background-color: #fff;
  font-family: "Roboto Mono", monospace;
  display: flex;
  vertical-align: bottom;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-attachment: fixed;
}

.header {
  text-align: center;
  color: #272341;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 40px;
  margin: 0;
}

.nav {
  height: 100px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mybtn {
  margin-top: 40px;
  color: #272341;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.6rem;
  padding: 10px 15px;
  border-radius: 8px;
  border: 2px solid #5758ad;
  font-weight: bold;
}
.nav .mybtn:hover {
  background-color: #5758ad;
  color: #fff;
}

.header-icons {
  text-align: center;
  margin-top: 20px;
  z-index: 4;
}

.icon {
  font-size: 25px;
  padding: 10px;
  margin: 0 auto;
  text-rendering: optimizeLegibility;
}

#down {
  font-size: 40px !important;
  margin-top: 80vh;
  z-index: 5;
}

#top-button {
  position: fixed;
  bottom: 20px;
  right: 30px;
  cursor: pointer;
  z-index: 10;
}

#profile-pic {
  width: 40%;
  display: inline-block;
  float: center;
}
#profile-pic img {
  border-radius: 200px;
  width: 100%;

  background-image: -webkit-linear-gradient(135deg, #43b7b8, #436aac, #8929ad);
}

@media all and (max-width: 925px) {
  .nav {
    display: grid;
    grid-template-columns: 2fr 2fr;
  }
  #profile-pic {
    width: 100%;
    /* padding: 0 10em; */
  }
  #profile-pic img {
    width: 84%;
  }
}
#myTopnav{
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  font-family: "Roboto Mono", monospace;
  
}
.topnav {
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
  /* border: 1px solid black; */
  border: 2px solid #5758ad;
  /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px; */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background-color: #5758ad;
  overflow: hidden;

}
.myoptions{
  margin-top:5px;
}
/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  

}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #5758ad;
  
}

/* Add an active class to highlight the current page */
/* .topnav a.active {
  background-color: #04AA6D;
  color: white;
} */

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive{
    margin-bottom: 40px;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive{
    margin-bottom: 40px;
  }
}