@import url('https://fonts.googleapis.com/css?family=Fredoka One');

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25)), url("/Assets/background.svg");
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    margin: 0;
    display: flex; 
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
	padding-bottom: 120px;
    font-family: 'Fredoka One';
    text-align: center;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  pointer-events: none;
}

body::before {
  top: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(0, 0, 0, 0) 100%);
}

body::after {
  bottom: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(0, 0, 0, 0) 100%);
}

main {
    flex: 1 0 auto;
    padding: 20px;
}

div {
    padding: 20px;
    margin: 20px;

    border: 2px solid #333; 

    background-color: rgba(0, 0, 0, 0.4); 
    border-radius: 24px; 
    border-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
    
    color: #dcdcdcff; 
}

a {
	color: white;
}

footer {
    position: fixed;
    bottom: 20px;
	z-index: 1000;
}

nav {
    background-color: rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 20px;
   
    display: inline-block;
    max-width: calc(100% - 40px);

    z-index: 1000;
   
    border: 2px solid #fff;
    border-radius: 24px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0px;
    box-sizing: border-box;
   
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.navbar-container {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
}

.navbar::-webkit-scrollbar {
    display: none;
}


.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.nav-item {
	flex-shrink: 0;
}

.nav-item:first-child {
	border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.name {
	font-size: 16pt;
}

.nav-item a {
    display: inline-block;
    color: #dcdcdc;
    text-align: center;
	margin: 0px 5px;
    padding: 8px 10px;
    text-decoration: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
	padding: 8px 20px;
}