html{
  scroll-behavior: smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
}

.title{
  font-size: 72px;
  text-align: center;
}

#home .presentation{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.centeritems{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#home{
  background-color: #ff4d4d;
}

#home div.presentation div.text p{
  font-size: 32px;
  font-weight: bolder;
  color: white;
}

#home div.presentation div.snapshot{
  background-color: #d94242;
  font-size: 32px;
  font-weight: bolder;
  color: white;
  border-radius: 10px;
  margin: 20px;
  border: 10px solid #d94242;
}

button.stylizedbutton{
  margin: 0.5rem;
  outline-color: #d94242;
  outline-width: 2.5px;
  outline-style: solid;
  background-color: #ff4d4d;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  color: white;
  border: none;
  padding: 1em;
}

button.stylizedbutton:hover{
  outline-width: 5px;
}

button.stylizedbutton:active{
  outline-width: 2.5px;
}

#about{
  display: block;
  background-color: #00a6e7;
  color: white;
}

.aboutparagraph{
  font-size: 24px;
}

#download{
  display: block;
  background-color: #505050;
  color: white;
}

#lastestversionlog{
  display: block;
  background-color: #bcbcbc;
  color: white;
}

.oslogo{
  fill: white;
}

#download .bigdownloadbutton{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#bugs{
  background-color: #30a14e;
  color: white;
}

#functionalities{
  background-color: rgb(196, 196, 0);
  color: white;
}

.devstate.developping{
  font-weight: bold;
  color: yellow;
}

.devstate.finished{
  font-weight: bold;
  color: green;
}

.devstate.reported{
  font-weight: bold;
  color: red;
}

.devstate.off{
  font-weight: bold;
  color: white;
}

footer {
  background-color: #888888;
  text-align: center;
  color: white;
}

footer a{
  color: blue;
}

footer a:hover{
  font-weight: bolder;
}

.selectanother{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.gototop{
  position: fixed;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  /* background-color: #ffffff9e; */
}

.gototop span{
  font-size: xxx-large;
}

.mySlides {display: none}
img {vertical-align: middle;}

#home .presentation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#home .presentation .snapshot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slideshow-container img{
  width: 300px;
}

/* Next & previous buttons */
.slideshow-container .prev, .slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prev:hover, .slideshow-container .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slideshow-container .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.slideshow-container .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 */
.slideshow-container .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.mySlides{
  display: flex;
  justify-content: center;
}