html{
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
html::-webkit-scrollbar { /* WebKit */
  width: 0;
  height: 0;
}
h1{
  color: white;
  margin: 0;
  padding: 0;
  font-size: 3em;
}
p{
  font-size: 1.25em;
}
body{
  margin: 0;
  height: 100%;
  min-width: 100%;
  background-color: #2c3e50;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: whitesmoke;
  padding: 0;
}
.desc{
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
}
#app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  width: 66%;
  margin: auto;
  min-width: 320px;
  object-fit: cover;
}
#nav {
  font-size: 1.5em;
  color: salmon;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#nav a {
  font-weight: bold;
  padding: 25px;
  color: whitesmoke;
}
#nav a:hover{
  color: #057f8d;
}
#nav a.router-link-exact-active {
  color: salmon;
}
.contact{
  color: #057f8d;
}
.cotact:hover a{
  color: salmon;
}
span{
  text-decoration: none;
}
a{
  text-decoration: none;
}
h2 a{
  color: #057f8d;
}
h2 a:hover{
  color: salmon;
}
h3 a{
  color: salmon;
}
h3 a:hover{
  color: #057f8d;
}
h4 a{
  color: #057f8d;
}
h4 a:hover{
  color: salmon;
}
img{
  max-width: 100%;
}
object{
  max-width: 100%;
}
footer{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}
.footer-item{
  color: whitesmoke;
  margin: auto;
  width: 100%;
  height: 100%;
}
#middle-item{
  border-left: solid;
  border-right: solid;
  border-color: salmon;
}
.bot{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.half-card{
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.half-card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  margin: auto;
}
.half-card object {
  height: 150px;
  width: 150px;
  object-fit: cover;
  margin: auto;
}
.card{
  display: flex;
  flex-direction: column;
  margin: 10px;
  width: 300px;
  height: 500px;
  border-style: solid;
  border-radius: 5%;
  border-color: #ccc;
}
details {
  padding: .5em .5em 0;
}
summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}
details[open] {
    padding: .5em;
}
details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.66s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

@media only screen and (max-width: 1280px) {
  h1{
  font-size: 2.5em;
  }
}
@media only screen and (max-width: 960px) {
  h1{
    font-size: 2em;
  }
  footer{
    flex-direction: column;
  }
  #middle-item{
    border-top: solid;
    border-bottom: solid;
    border-left: none;
    border-right: none;
    border-color: salmon;
  }
  #nav {
  font-size: 1.25em;
  padding: 20px;
  }
  #nav a {
    padding: 10px;
  }
}
@media only screen and (max-width: 640px) {
  #nav a {
    padding: 10px;
  }
}
@media only screen and (max-width: 320px) {
  
}
