html {
    /* font-family: cursive; */
    background-size: 100px 100px;
    padding: 5px;
}

body {
    width: 600px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
}

h1 {
    font-size: 60px;
    text-align: center;
}

h2 {
  font-size: 40px;
  text-align: center;
}

img {
  border-radius: 20%;
}

.dropdown-content {
  display: none;
}

.dropdown-section.open .dropdown-content {
  display: block;
}

.dropdown-toggle {
  cursor: pointer;
}

.fit-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    width: 50%;
    height: 300px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

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