* {
  font-family: Helvetica;
  position: relative;
  color: black;
  overflow-y: auto;
}

body {
  /*background-color: rgb(229, 229, 234);*/
  background-color: white;
  overflow: hidden;
}

.content {
  border: 2px solid black;
  padding: 20px;
  margin: 10px;
  border-radius: 15px;
  background-color: rgb(174, 174, 178);
  margin-left: 2%;
  margin-right: 2%;

}

footer {
  background-color: rgb(95, 95, 95);
  width: 100%;
}

div.gallery {
  border: 2px solid #ccc;
}

div.gallery:hover {
  border: 2px solid #777;
}

header {
  background-color: rgb(95, 95, 95);
}

@media (prefers-color-scheme: light) {
  * {
    color: black;
  }

  body {
    /*background-color: rgb(229, 229, 234);*/
    background-color: white;
  }

  footer {
    background-color: rgb(95, 95, 95);
  }

  .content {
    border: 2px solid black;
    background-color: rgb(174, 174, 178);
  }

  .black {
    color: black;
  }

  div.gallery {
    border: 2px solid rgb(97, 97, 97);
  }

  div.gallery:hover {
    border: 2px solid rgb(46, 46, 46);
  }
}

@media (prefers-color-scheme: dark) {
  * {
    color: white;
  }

  body {
    /*background-color: rgb(229, 229, 234);*/
    background-color: rgb(44, 44, 46);
  }

  footer {
    background-color: rgb(0, 0, 0);
  }

  .content {
    border: 2px solid white;
    background-color: rgb(28, 28, 30);
  }

  textarea, .input-grey {
    background-color: grey;
    color: white;
  }

  .white {
    color: white;
  }

  header {
    background-color: black;
  }
}

html,
body {
  margin: 0;
  padding: 0;

}

#version {
  text-align: right;
  font-size: 8pt;
  /*position: fixed;
    bottom: 0;
    right: 0;*/
  margin-right: 40px;
  float: right;
}

.title {
  text-align: center;
  color: rgb(41, 91, 255);
  font-size: 30px;
  position: relative;
}

.profile-pic {
  border-radius: 50%;
  min-width: 40px;
  max-width: 60px;
  display: block;
  margin: auto;
}

header {
  border-bottom: 2px white solid;
  padding: 5px;
  width: 100%;
}

.social {
  position: static;
  width: 50px;
  bottom: 0;
  display: inline-block;
  margin-top: 5px;
}

/*.content {
            border: 2px solid white;
            padding: 10px;
            margin: 10px;
            border-radius: 15px;
            background-color: rgb(28, 28, 30);
    margin-left: 2%;
    margin-right: 2%;
        }*/
.content * {
  padding: 2px;
}

.wrapper {
  margin: 0;
  padding: 0;
  min-height: 100%;
  position: relative;
}

main {
  padding-bottom: 50px;
}

form * {
  color: black;
}

button {
  border-radius: 8px;
  transition-duration: 0.4s;
  width: 80px;
  height: 40px;
  border: none;
  background-color: white;
}

button:hover,
button:hover span {
  background-color: grey;
  color: white;
}

header * {
  display: block;
}

nav * {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 0px 5px 5px 16px;
  text-decoration: none;
  font-size: medium;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: block;
  line-height: 1em;
  max-height: 2em;
}

div.gallery {
  margin: 5px;
  float: left;
  width: 135px;
  border-radius: 3px;
  height: 260px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

div.gallery * {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
	word-wrap: break-word;
}

div.gallery:-webkit-scrollbar {
  display: none;
}

div.gallery:-webkit-scrollbar {
  display: none;
}

div.gallery img {
  width: 128px;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  overflow: visible;
}

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

.feedback * {
  overflow: visible;
}

textarea, .input-grey {
  border-radius: 10px;
}


/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: white;
  cursor: pointer;
  jpadding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.5em;
  overflow: hidden;
  background: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
  display: none;
  overflow: hidden;
}

.noselect * {
  cursor: not-allowed;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

