body {
    margin: 0px;
    padding: 0px;
    background-color: white;
    font-family: Saira extra condensed;
    font-size: 1.8rem;
    text-rendering: optimizeSpeed;
    
}
.wrapper {
    background-color: #f3e5cd;
    margin: 10%;
    padding: 1em;
}
.center {
  text-align: center;
}
#connect ul {
    display: flex;
    padding: 0;
}
#connect li {
    flex-grow: 1;
    list-style: none;
}
#connect li:nth-child(1) {
  text-align: left;
}
#connect li:nth-child(2) {
    text-align: right;
}
h1 + p {
  font-size: 2rem;
  font-weight: 600;
}
#winniephoto {
  display: flex;
  inline-size: fit-content;
  margin: auto;
  
}
#winniephoto img {
    border-radius: 10em;
    width: 100%;
}
#winnieskills ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding: 0px;
}
#winnieskills li {
  font-size: 1.5rem;
  list-style: none;
  padding: 0.5rem;
  margin: 0.5rem;
  border: 0.15rem solid rgb(80, 80, 90);
  border-radius: 0.4rem;
  color: rgb(46, 46, 53);
  background-color: white;
  font-weight: 800;
}
#winnieskills li:hover {
    background-color: wheat;
}
footer {
    margin-left: 0;
    padding-left: 1em;
    font-size: small;
    background-color: rgb(248, 232, 186);
}
footer p {
  text-align: center;
  margin-right: 1rem;
}
.topbutton {
    border:2px solid #ccc;
    background:#f0f8ff;
    text-align:center;
    padding:10px;
    position:fixed;
    bottom:3rem;
    right:5rem;
    cursor:pointer;
    color:#333;
    font-family:verdana;
    font-size:12px;
    border-radius: 5px; 
    opacity: 0.8;
    -moz-opacity: 0.6;
}
.topbutton:hover{
    background-color: white;
    opacity: 1;
}

/* Slideshow container */
.slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
      display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  /* .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  } */
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }