a {
  text-decoration: none;
  color: #FBFF12;
}

body {
  background-color: #FBFF12;
  margin: 0 auto;
}

html {
  font-family: 'Short Stack', cursive, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

h1 {
  text-align: center;
  font-family: 'Rammetto One', cursive;
  font-size: 2em;
  color: #FF206E;
  text-shadow: 2px 2px #41EAD4;
}

h2 {
  color: #0C0F0A;
  background-color: #FFFFFF;
  width: 200px;
  padding: 10px;
}

h2 a {
  text-decoration: none;
  color: #41EAD4;
  text-shadow: 1px 1px #FF206E;
}

.header-fonts {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 10px;
  background-color: #41EAD4;
}

li a:hover {
  background-color: #FF206E;
}

p {
  color: white;
}

.profile-links {
  text-align: center;
  display: inline;
}

.profile-pic {
  margin: 35px auto;
  display: block;
  border: 5px solid #41EAD4;
  object-fit: cover;
  max-width: 80%;
  background-color: white;
}

.section-1 {
  margin: auto;
}

.section-2 {
  display: flex;
  justify-content: space-evenly;
}

.section-3 {
  background-color: #FF206E;
  box-shadow: 5px 5px #41EAD4;
  margin: 35px;
  padding: 15px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FF206E;
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 750px) {
  .section-2 {
    flex-direction: column;
    align-items: center;
  }
  
  ul {
    flex-direction: column;
  }
}

/*Toggle Switch
=====================*/
label {
	float: right;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



