* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
body
{
  background-color:rgba(5, 179, 179, 0.116);
}
/* Name style*/
.name {
    font-family: 'Satisfy', cursive;
    font-size: 27px;
    padding-bottom: 5px;
}
/*Styling for scroll Button*/
/* styles.css */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: rgba(9, 248, 188, 0.397);
    color: black;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight:1500 ; font-size: 25px;padding-left: 5px;padding-right: 5px;
    height: auto;
  }
  /*Share this page*/

  .overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  @media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }
/*Main Body*/
.about {
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 10px;
    margin-right: 10px;
}
.description {
    font-size: 21px;
    
    font-weight: 450;
    color: grey;
    padding-left: 35px;padding-right: 30px;
}
.heading {
    font-size: 36px;
    font-weight: 450;

    margin-left: 88px;
    margin-right: 10px;

    margin-top: 15px;
    margin-bottom: 10px;
}
/*Footer*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
}

.footer {
    background-color: whitesmoke;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 535;
    color: rgb(66, 65, 65);

    margin-top: 6.5px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer .content {
    display: flex;
    justify-content: space-evenly;
    margin: 1.5rem;
}

.footer .content p {
    margin-bottom: 1.3rem;
}

.footer .content a {
    text-decoration: none;
    color: black;
}

.footer .content a:hover {
    color: rgb(0, 0, 0);
    padding-left: 8px;
    transition: all 0.3s ease;
}

footer {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 18px;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .footer .content {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .footer {
        position: unset;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .footer .content,
    .footer {
        font-size: 14px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        position: unset;
    }
}