@charset "utf-8";
body {
  margin: 0 auto;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  text-align: center;
}
nav {
  text-align: center;
  padding: 0.5% 10%;
  background-color: #0f4480;
  overflow: auto;
}
.navlinks {
  color: aliceblue;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  font-size: 25px;
  float: right;
  padding: 1.25% 2%;
}
.parallax {
  /* The image used */
  background-image: url('Mainpage.jpg');
  position: relative;
  /* Full height */
  min-height: 500px;
  max-height: 100%;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.translucent {
  text-align: center;
  position: absolute;
  bottom: 15%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 0.1% 1;
}
.container {
  display: grid; /* or inline-flex */
  grid-template-columns: 25% 25% 0%;
  background-color: white;
  word-wrap: break-word;
  align-items: center;
  justify-content: center;
}
.item {
  background-color: #0f4480;
  padding: 7%;
  margin: 10px;
  color: white;
}
.container > * {
  flex: 1 1 0;
  text-align: center;
}
.details {
  padding: 2% 0;
  margin: 0 30%;
  background-color: darkblue;
  color: white;
  transition-duration: 0.5s;
}
.details:hover {
  transition-duration: 0.5s;
  background-color: white;
  color: #84A4FD;
}
section {
  padding: 1% 25%;
  margin: 0;
}
footer {
  background-color: #0f4480;
  padding: 1%;
}
#interface {
  display: none;
}
.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  #interface {
    display: block;
    float: right;
    position: absolute;
    right: 10%;
    top: 7%;
  }
  .mobile {
    display: none;
  }
  .mobile.responsive {
    display: grid;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .mobile.responsive p {
    margin: 1%;
  }
	.container > * {
  flex: 1;
  text-align: center;
}
  .container {
    display: grid; /* or inline-flex */
    grid-template-columns: 65%;
    background-color: white;
    word-wrap: break-word;
    align-items: center;
    justify-content: center;
  }
}