@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --base-clr: #13111a;
    --line-clr: #b0b0de;
    --hover-clr: #404393;
    --text-clr: #b1b1d1;
    --accent-clr: #5e5f8e;
    --secondary-text-clr: #aaaac4;
}

* {
    margin: 0;
    padding: 0;
}
html {
    font-family: Lato, 'sans-serif';
    line-height: 1.5rem;
}
body{
    min-height: 100vh;
    display: border-box;
    color: var(--text-clr);
    object-fit: cover;
    background-attachment: fixed;
    padding: 5%;
    overflow-x: hidden;
}

.container{
    border: 1px solid var(--line-clr);
    border-radius: 2em;
    margin-bottom: 20px;
    padding: min(3em, 15%);
    display: justify;
}

.content {
  padding: min(10px, 6%);
}

h1 {
  text-align: center;
  padding-top: 5%;
  padding-bottom: 2%;
  color: var(--line-clr);
  line-height: 35px;
}

body {
     background-image: linear-gradient(1800deg, rgb(6, 6, 10), rgb(29, 29, 40));
     background: var(--base-clr);
     background-repeat: no-repeat;
     object-fit: cover;
     background-attachment: fixed;
}

.footer {
   position: fixed;
   flex-wrap:wrap;
   left: 0;
   bottom: 0;
   width: 100%;
   padding-top: 5px;
   padding-bottom: 5px;
   color: rgb(112, 105, 199);
   background-color: rgba(15, 13, 29, 0.934);
   border-top: 1px solid var(--accent-clr);
   text-align: center;
}

.fcontent a {
  color: rgb(112, 105, 199);
  text-decoration: none;
}
.fcontent a:first-child{
  float: center;
}
.fcontent a:last-child{
  float: right;
  padding-right: 1rem;
  opacity: 40%;
}