/*background: linear-gradient(to right, #4C74FF, #C31AFF, #FF5C00);*/

:root{
  
  --accent-color: #00abf6;
  --accent-color-hover:  #00b7f6;
  --blur-color: rgba(0, 172, 246, .2);
  --small-color: #999999;
  --background-image: ;
  --background-size: cover;
  --background-repeat: no-repeat;
  --border-radius: 1rem;
  --color: white;
  --decent-color: gray;
  --background-color: white;
  --gradient: linear-gradient(60deg, rgba(39, 61, 81, 1.000) 0.000%, rgba(33, 73, 115, 1.000) 16.667%, rgba(34, 96, 152, 1.000) 33.333%, rgba(43, 126, 184, 1.000) 50.000%, rgba(57, 157, 205, 1.000) 66.667%, rgba(73, 184, 209, 1.000) 83.333%, rgba(89, 201, 196, 1.000) 100.000%);
    /*linear-gradient(-135deg, #9beb34, #d2eb34, #52c93c, #66db51)*/
    ;
  
}

@font-face {
  font-family: 'Nova Font';
  src: url('Nova Font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html{
  font-size: 1.1rem;
  scroll-padding: 128px;
  width: calc(100vw - 2rem);
  margin: 0;
  font-family: 'Bahnschrift', sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  background-attachment: fixed;
  background: var(--gradient);
  background-attachment: fixed;
  color: var(--color);
  transition: .3s;
  width: 100%;
  background-image: ;
  backdrop-filter: blur(20px);
  scrollbar-color: var(--accent-color) rgba(33, 73, 115, 1.000);
}



nav, footer{
  background: var(--blur-color);
  backdrop-filter: blur(10px);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
 
}
nav a{
  text-decoration: none;
  font-size: 48px;
  color: white;
  text-shadow: 2px 2px 10px gray;
  transition-duration: .2s;
}
nav a:hover{
  color: white;
  text-decoration: none;
  scale: 1.1;
}

nav{
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header{
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 48px;
}

.header p {
  max-width: 800px;
  
}

.header .image-div{
  display: none;
  
}

@media(min-width: 1200px){
  .header{
    font-size: 1.5rem;
  }
  .header img{
    display: block;
    width: 50%;
      height: auto;
  }
  .header .image-div{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.project {
  
  max-width: 800px;
  margin: 48px auto;
  padding: 48px;
  border-radius: 12px;
  background-color: var(--blur-color);
  backdrop-filter: blur(2px);
}

.project b{
  text-align: left;
  margin: 50px 0;
}




video{
  width: min(100%, 30rem); 
  border-radius: var(--border-radius);
}









