@charset "utf-8";
/* CSS Document */
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%;
}
section {
  padding: 0.1% 25%;
  margin: 0;
}
footer {
  background-color: #0f4480;
  padding: 1%;
}
.about-section {
  display: flex;
  flex-direction: row;
}
h1 {
  font-size: 50px;
}
img {
  width: 75%;
}
#interface {
  display: none;
}
.mobile {
  display: none;
}
.small {
	width: 100%;
}

.big {
	float: left;
}

.inner-container {
	position: relative;
	right: 7.5%;
}
@media screen and (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
  }
  img {
    width: 100%;
  }
  .small {
    width: 75%;
  }
  .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.5);
    position: absolute;
    width: 100%;
    top: 17.5%;
  }
  .mobile.responsive p {
    margin: 1%;
  }
	.inner-container {
	position: relative;
	right: 0%;
}
}