@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 97vh;
    justify-content: space-between;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: end;
}

nav{
    margin-right: 5vw;
}

ul{
    display: flex;
}

nav ul li{
    list-style: none;
}

li a{
  text-decoration: none;
  transition: 0.25s ease;
  padding: 5px;
  color: #cecece;
}

ul:hover a {
  color: #616161;
}

ul:hover a:hover {
  background: #cfcfcf;
  background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    margin-right: 20px;
    color: black;
}

h1{
    font-size: 3rem;
    margin-bottom: 10vh;
    color: #cecece;
}

footer p{
      color: #cecece;
}