body{
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

input[type=text]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: rgb(0, 91, 154);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 14px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.loginform{
    border-radius: 5px;
    background-color: rgb(148, 148, 148);
    padding: 20px;
    width: 30vw;
    height: 200px;
    margin-bottom: 5vh;
    z-index: 1;
}

.logo{
    min-height: 20vh;
}

.container {
  position: absolute;
  width: 100%;
  height: 100%;;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.item1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom:auto;
    width: 40vw;
}

.item2 {
    margin-left: auto;
    margin-right: auto;
    min-width: 20em;
    width: 25vw;
}

#wrapper{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: flex-start;
    height: 100vh;
    width: 25vw;
    min-width: 230px;
}

.info-button{
    float:left;
    margin-left:2em;
    margin-bottom:2em;
    width:5vw;
    height:5vw;
    border: 1px solid rgb(148, 148, 148);
    border-radius:3vw;
    z-index: 2;
    box-shadow: none;
    font-size: 2vw;
    color: white;
    background-color: rgb(0,91,154);
    text-align: center;
}

.info-button:hover{
    background-color: rgb(148, 148, 148);
    border: 2px solid rgb(0,91,154);
    color: black;
    transition: 0.3s linear; 
}

.info-wrapper{
    background-color: rgb(148, 148, 148);
    border: 2px solid rgb(0, 91, 154);
    border-radius: 2em;
    margin-left: 1em;
    z-index: 2;
    max-height: 85vh;
    overflow-y: auto;
}

.info{
    margin: 1em;
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.adressbox{
    background-color: white;
    border-radius: 0.5em;
    border: 2px solid rgb(0, 91, 154);
    margin-right: 1em;
    margin-left: 1em;
    text-align: center;
    color: rgb(0, 91, 154);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.infopic{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.logopic{
    width: 25vw;
    max-width: 20em;
    position: absolute;
    bottom: 2em;
    right: 2em;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1; 
border-radius: 2em;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #888; 
border-radius: 2em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555; 
border-radius: 2em;
}