body
{
    margin: 0;
    text-align: center;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    color: #40514e;
    background-color: #e3fcff;
}

h1
{ 
    font-size: 5.625rem;
    margin: 50px auto 0 auto;
    color: #66BFBF;
    font-family: 'Sacramento', cursive;
}

h2
{
    padding-bottom: 10px;
    font-size: 2rem;    
    color: #66BFBF;
    font-family: 'Montserrat', sans-serif;
}

h3
{   color: #11999E;
    font-family: 'Montserrat', sans-serif;
}
a
{
    color: #11999E;
    font-family: 'Montserrat', sans-serif;
    margin: 10px 10px;
    text-decoration: none;
}

a:hover
{
    color: #30e3cb;
    text-decoration: none;
}


button {
    background: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
  }
  
  button:focus,
  input:focus {
    outline: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  

.copyright
{
    font-size: 0.75rem;
    color: #eaf6f6;
    font-family: 'Montserrat', sans-serif;
}


  
  section {
    height: 100vh;
  }
  
  #home {
    background-color: #d4faff;
    height: 110vh;
  }
  
  #about {
    padding-top: 10%;
    height: 90vh;
  }
  
  #skills {
    padding-top: 5%;
    background-color: #d4faff;
  }
  
  #contact {
    padding-top: 13%;
    margin: auto;
    height: 60vh;

  }

  
#nav-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  #nav {
    @include shadow-box;
    display: flex;
    flex-direction: column;
    font-family: $headings-font;
    height: 4em;
    overflow: hidden;
  
    &.nav-visible {
      height: 100%;
      overflow: auto;
    }
  }
  
  .nav {
    display: flex;
    height: 4em;
    line-height: 4em;
    flex-grow: 1;
  }
  
  .nav-link,
  .logo {
    padding: 0 1em;
  }
  
  
  h1.logo {
    font-weight: 300;
    font-size: 1.75em;
    line-height: 0.75em;
    color: #66BFBF;
  }
 
  .nav-link {
    text-transform: uppercase;
    text-align: center;
    border-top: 0.5px solid $color-neutral-med;
  }
  
 
  a:hover {
    text-decoration: underline;
  }
  
  .right {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  @media (min-width: 800px) {
    #nav-wrapper {
      overflow: hidden;
    }
  
    #nav {
      overflow: hidden;
      flex-direction: row;
    }
  
    .nav-link {
      border-top: none;
    }
  
    .right {
      overflow: hidden;
      flex-direction: row;
      justify-content: flex-end;
      position: relative;
      left: 1.5em;
      height: auto;
    }
  
    .btn-nav {
      display: none;
    }
  
    .nav #{$a-tags-no-hov} {
      &.active {
        @include main-gradient;
        color: #fff;
      }
    }
  
    .nav-link-span {
      display: inline-block;
    }
  
    .nav-link {
        color: #488a8a;
      text-decoration: none;
  
      &:last-child {
        padding-right: 3em;
      }
    }
  
    a:hover.nav-link:not(.active) {
        color: #66BFBF;
      background: $color-neutral-med;
      background: linear-gradient(45deg, $color-neutral-lt, #ddd);
    }
  }
  
  
.skill-row
{
    width: 50%;
    text-align: justify;
    margin: 100px auto;
}
span
{
    font-style:   italic ;
}
.text-subheading
{
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}
.divd
{
    margin-top: 0;
    position: relative;
    padding-top: 100px ;
    background-color: #d4faff;
    height: 685px;    
}
.abby
{
    width: 15%;
    border-radius: 50%;
}

.bottom-cloud
{
    position: absolute;
    left: 370px;
}

.top-cloud
{
    position: absolute;
    top: 50px;
    right: 400px;
}

hr
{
    border: dotted #d6e9e9 6px;
    border-bottom: none;
    width: 4%;
    margin: 100px auto;
}

.warning
{
    margin-bottom: 40px;
}
.java-img
{
    float: left;
    margin-right: 30px;
    margin-top: 25px;
    width: 25%;
    padding-bottom: 20px;
}

.python-img
{
    float: right;
    margin-top: 70px;
    width: 30%;
    padding-bottom: 40px;
}

.middle-container
{
    margin: 75px 0 75px 0;
    line-height: 2;
}

.getintouch
{
    margin-bottom: 0;
}

.dont
{
    margin-top: 0;
}

.btn 
{
    background: #11cdd4;
    background-image: -webkit-linear-gradient(top, #11cdd4, #11999e);
    background-image: -moz-linear-gradient(top, #11cdd4, #11999e);
    background-image: -ms-linear-gradient(top, #11cdd4, #11999e);
    background-image: -o-linear-gradient(top, #11cdd4, #11999e);
    background-image: linear-gradient(to bottom, #11cdd4, #11999e);
    -webkit-border-radius: 8;
    -moz-border-radius: 8;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}
  
.btn:hover 
{
    background: #30e3cb;
    color: #e3fcff;
    background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad);
    background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad);
    background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad);
    background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad);
    background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad);
    text-decoration: none;
}

.bottom-container
{
    background-color: #66bfbf;
    height: 75px;
    margin: 0 auto;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 0;
}