:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #6e9dac;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

html, body {
  margin: 0;
  display: flex;
  overflow: auto;
  /* place-items: center; */
  min-width: 320px;
  min-height: 100%;
  height: 100%;
  width: 100%;
  background-color:  #011939;
  justify-content: center;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

.navbar {
  z-index: 99;
  list-style-type: none;
  margin: 0;
  padding-left: 50px;
  overflow: hidden;
  display: flex;
  background-color: #013a47;  
  position: fixed;
  top: 0;
  width: 100%
}

.navbutton {
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: x-large;
  color: #6e9dac;
  font-weight: bold;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}

button:hover{
  background-color: #00232b;
}

.contain {
  width: 100%;
  height: 100%;
  background-color: #011939;
  padding:0px; 
  margin:0 auto;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  background-color: #011939;
  background-image: url(../assets/logoBG.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 60px;
}

.about {
  position: absolute; 
  float: right; 
  top:20%; 
  left: 45%; 
  padding-top: 25px; 
  padding-left: 50px; 
  padding-right: 50px; 
  font-size: xx-large; 
  background-color:  #011939e1;
  color: #6e9dac;
}

.linkslist{
  list-style-type: none; 
  padding: 5px;
  position: absolute;
  min-width: 400px;
  width: 60%;
  /* position: fixed; */
  top:  300px;
  left: 50%;
  transform: translate(-50%,-50%);
}

.item{
  padding: 5px;
}

.links {
  padding: 10px;
  color: #6e9dac;
  border-style: solid;
  border-color: #013a47;
  background-color: #011939;
  width: 100%;
}

.links img{
  padding-left: 10px;
  object-fit: fill;
}

.linkslist a{
  text-align: center;
  font-size: xx-large;
  font-family: Arial, Helvetica, sans-serif;
}

.foot{
  position: absolute; 
  bottom: 2px;
  padding-left: 30px;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

