*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "Google Sans Code", monospace;
    /* background-image: linear-gradient(to right, #0c0c0c, #615050); */
    /* font-family: 'Akira Expanded', sans-serif; */
}

/* @font-face {
  font-family: 'Akira Expanded';
  src: url('/fonts/AkiraExpanded.woff2') format('woff2'),
       url('/fonts/AkiraExpanded.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */


html, body{
    height: 100%;
    margin: 0;
}

body {
    color: white;
  background: radial-gradient(circle at center, #272727 0%, #131111 100%);
  background-repeat: no-repeat;
  background-size: cover;
}


.title-paragraph{
    text-align: center;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

h1{
    font-weight: 100;
}

b{
    font-weight: 600;
}

nav{
    margin-right: 2rem;
    margin-top: 1rem;
    font-size: large;
}
ul{
    display: flex;
    justify-content: flex-end;
}

li{
    list-style-type: none;
    padding: 16px 12px;
}

a{
    color: rgb(255, 0, 98);
    text-decoration: none;
}


a:hover{
    color: #0c0c0c;
}