@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

body{
    background-color: rgb(0, 0, 0);
}

a {
    color: white;
}

.entry {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 50px;
    background-color: black;
}
h2 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 50px;
}
h1 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 150px;
}
p {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
}


button {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    background-color: black;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
}

.app-button {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-size: 20px; 
    margin-top: 11px; 
    margin-left: 12px; 
    margin-bottom: 10px;
    display: block;
    border: solid;
    border-width: 1px;
    padding: 5px;
    border-color: rgb(255, 255, 255);
}

.dropdown {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, 0);
    z-index: 1;
    margin-top: 5px;
    margin-left: -6px;
    display: none;

}

.window {
    display: none;
    background-color: black;
}

.app-button:hover .dropdown {
    display: block;
}
.dropdown:hover button {
    display: block;
}

.slides {
    display: none;
}

.slideshow-container {
  max-width: 300px;
  position: relative;
  margin: auto;
}

.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;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
