/*part of fansy menu*/
* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}
    
body {
    background-color:#88108E;
 color: #FFFFFF;
font-family: "Sour Gummy", sans-serif; 
padding: 1.5em;
}

/*to fix the spacing between lines*/
h1, h2, p {
    padding: .5em;
}


/*links*/
a{
    color: #FDECFD; 
}

img {
    border: .6em inset #F4C8C8 ;
    border-style: double ;
  border-radius: 10px;
  .grab {cursor: grab;}
}



a:hover{
    background-color: #FFFFFF;
    color: #88108E;
    padding-top: .2em;
    border-radius: 5px;
}

.logo {
    border: 0;
    center
}

/*part of fansy menu*/
nav {
  margin: 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #5F176D;
  margin-left: -2em;
}
/*part of fansy menu*/
nav a {
  float: left;
  display: block;
  color: #FFFFFF;
  text-align: center;
  padding: 1em;
  text-decoration: underline;
  font-size: 1em;
}
/*part of fansy menu*/
nav a:hover {
  background-color: #FFFFFF
  font-size: 2em;
}
/*part of fansy menu*/
main {
/*   ADD PADDING INSIDE THE WHOLE 'main' ELEMENT  */
  padding: 1.5em;
  
/*   SHIFT THE 'main' ELEMENT DOWN, AWAY FROM THE MENU BAR */
  padding-top: 2em;
  
/*   CUSTOMIZE THESE UNTIL YOU LIKE THE WAY THEY LOOK  */
 
  width: 90%;
  margin: auto;
 
}

/*cool button stuff*/
.button {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #020C55;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #020522}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
/*scroll to top button*/

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #020C55; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #020522; /* Add a dark-grey background on hover */
}

