/*reminder-> margin, padding: top, right, bottom, left*/

html {
  font-family: calibri, arial, sans-serif;
  background-color: white;
}

input {
  font-family: calibri, arial, sans-serif;
}

body {
  margin: 0px;
  /* give space to the footer when page is scrolled down to the bottom (height 20px)*/
  margin-bottom: 50px;
  /* give space to the panorama picture (height 250px)*/
  margin-top: 40px;
}

body .main_area {
  margin: 0px;
  padding: 0px;
  margin-left: 6px;
  margin-right: 6px;
}

.main_page {
  width: 75%;
  margin: auto;
}


@media all and (max-width: 600px) {

  /* see modifications also in nav stylesheet */
  body {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
  }

  body .main_area {
    margin: 0px;
    padding: 0px;
  }

  .main_page {
    width: 95%;
    margin: auto;
  }
}

.title {
  display: block;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  height: 50px;
  padding-top: 50px;
  color: rgb(240, 240, 240);
}

h1 {
  text-align: center;
  color: rgb(70, 80, 110);
  margin-bottom: 12px;
}

h2 {
  margin-left: 6px;
}

p,
li,
a {
  font-size: 18px;
}

p.h1_comment {
  font-style: italic;
  text-align: center;
}

p.warning {
  text-align: center;
  color: red;
}

p.content_text {
  margin: 16px 6px;
  text-align: justify;
  text-justify: inter-word;
}

.panorama {
  /* position: absolute;
  top: 0px;
  left: 0px; */

  /* The image used */
  /*background-image: url("images/panorama.jpg");*/

  /* Full height */
  height: 350px;
  width: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.panorama.mobile {
  display: none;
}

@media all and (max-width: 600px) {
  .panorama.desktop {
    display: none;
  }

  .panorama.mobile {
    display: block;
  }
}

.main_pic {
  width: 50%;
  border-style: double;
  border-color: blue;
  border-radius: 5px;
}

footer {
  size: 11px;
  font-style: italic;
  text-align: center;
  height: 20px;
  width: 100%;
  background-color: rgb(70, 80, 110);
  color: #f1f1f1;

  padding: 4px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  display: block;
}

.divdownloadlink {
  text-align: center;
  margin: 6px auto;
}

a.downloadlink {
  text-decoration: none;
  font-size: 25px;
  color: rgb(90, 100, 130);
  display: inline;
  text-decoration: underline;
}

a.downloadlink:hover {
  color: rgb(120, 130, 160);
}

li {
  text-align: left;
}

.photo_count {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #111
}

.global_text {
  background-color: #e4e7ef;
  border-radius: 20px;
  padding: 12px;
  margin: 12px auto;
  border: 1.5px solid #2d283e;
  width: 90%;
}

.public_album {
  text-align: center;
  margin: 16px;
}