@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --background: #020202;
  --foreground: #ffffff;
}

body{
      color: var(--foreground);
  background: var(--background);
    padding: 0;
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-style: normal;

}







::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 4px;
  background-color: #000000;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(112, 112, 112);
}


.root{

    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

}

img{
  margin-top: 20vh;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;

}
p{
  position: absolute;
  text-align: center;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50%;
}
@media (max-width:786px){
  p{
    width: 90%;
  }
}
.navBar{
    box-sizing: border-box;
    padding-left: 3em;
    padding-right: 3em;
    column-gap: 3em;
    width: 100%;
    padding-top: 2em;
    height: fit-content;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.navBar a:nth-child(1){
    margin-right: auto;
}
.navBar a{
    text-decoration: none;
    color:white;
}

img{
  width: 100%;
  height: auto;
}
.links{
  margin-top: auto;
  margin-bottom: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
a{
  color: rgb(0, 174, 255);
}


@media (max-width:786px){
    .navBar {
        font-size: .8em;
        column-gap: 1em;
        justify-content: center;
    }

    .navBar a:nth-child(1) {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 1em;
    }
}