body {
    margin: 0;
    background-color: white;
}

code {
    white-space: pre;
}

h1 {
    margin-top: 0px;
    padding-top: 20px;
}

textarea {
    height: 90vh;
    width: 80%;
}

#main {
    padding: 10px;
    height: 100vh;
}

#sidebar { 
    background-color: #fdffd7;
    height: 100vh;
    padding-top: 40px;
    position: fixed bottom;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  padding-top: 30%;
}

#barcon:hover {
    animation: wiggle;
    animation-duration: 1s;
}

@keyframes wiggle {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    20% { transform: translate(-3px, 0px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    80% { transform: translate(-1px, -2px) rotate(1deg); }
}

.sidebar h2 {
    margin-top: 5px;
}

#barcon .tooltiptext {
  visibility: hidden;
  width: 700px;
  background-color: #fcd46e;
  color: black;
  text-align: center;
  font-size: 12px;
  border-radius: 80px;
  padding: 10px 9;
  
  /* Position the tooltip */
  /*position: relative;
  z-index: 2;
  top: 5px;
  left: 40%;*/
}

#barcon:hover .tooltiptext {
  visibility: visible;
}

#desc .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: #fcd46e;
    color: black;
    text-align: center;
    border-radius: 20px;
    padding: 10px 9;
    
  }
  
#desc:hover .tooltiptext {
    visibility: visible;
}

@keyframes grow {
    from {
        font-size: 0px;
    }
    to {
        font-size: 80px;
    }
}

#welcome {
    animation-name: grow;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    padding: 70px 0;
    text-align: center;
}

@keyframes show {
    0% {
        opacity: 0;
        height: 0px;
        line-height: 0px;
        padding: 0px;
        margin-bottom: 0px;
    }
    
    75% {
        opacity: 0;
        height: 100%;
        line-height: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }
    100% {
        opacity: 1;
        height: 100%;
        line-height: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }
}

#about, #about1, #picture {
    animation-name: show;
    animation-duration: 3s;
}

@media only screen and (max-width: 900px) {
 #hide-mobile 
 {display:none;}
}

@media only screen and (min-width: 901px) {
    #hide-desktop 
    {display:none;}
}

#wrap {
    height: 100%;
    /*align-items: center;
    justify-content: center;*/
  }
  
.button{
    width: 230px;
    height: 60px;
    font-family: sans-serif;
    font-size: 22px;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    background-color: #59ddee;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

   
.button:hover{
    background-color: #93f5e7;
    box-shadow: 0px 15px 20px #59ecee;
    color: #fff;
    transform: translateY(-7px);
}

.contact{
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    background-color: #59ddee;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.contact:hover{
    background-color: #93f5e7;
    box-shadow: 0px 15px 20px #59ecee;
    color: #fff;
    transform: translateY(-7px);
}

.button-resume{
    width: 200px;
    height: 40px;
    font-family: sans-serif;
    font-size: 15px;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    background-color: #59ddee;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.button-resume:hover{
    background-color: #93f5e7;
    box-shadow: 0px 15px 20px #59ecee;
    color: #fff;
    transform: translateY(-7px);
}

.flex-container {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-evenly;
}

.flex-container > div {
    margin: 10px;
    padding: 30px;
    font-size: 19px;

}

/*style="color:#00478f"*/

/* menu mobile */
#menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    left: 0 !important;
  }
  .menu__btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index:100;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #fcd46e;
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100px;
    height: 1000%;
    margin: 0;
    padding: 80px 30px;
    list-style: none;
    background-color: #d2fcfb;
    box-shadow: 0px 15px 20px #59ecee;
    transition-duration: .25s;
    z-index:9;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
    align-items: center;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }
  