
/* Importing Fonts */

@font-face {
    font-family: 'Audiowide-Regular';
    src: url(/fonts/Audiowide-Regular.ttf) format('truetype');
}

/* Global Styles */

body {
    background-color: black;
    color:white;
    '
}

/* Napisy */

.title {
    text-align: center;
    font-size: 70px;
    font-weight: bold;
}

.MainTitle {
    text-align: center;
    font-size: 100px;
    font-family: 'Audiowide-Regular';
}

/* Pasek nawigacyjny */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_links {
display: flex;
  align-items: center;
  justify-content: flex-end; 
  width: 100%;
}

.nav_links li {
    display: inline-block;
    padding: 0px 30px;
}

.nav_links li a:hover {
    color: white;
}

li, a, button {
    font-family: 'Audiowide-Regular';
    font-weight: 500;
    font-size: 20px;
    color: rgba(180, 180, 180, 0.668);
    text-decoration: none;  
}

.FrostSignal-nav {
    margin-right: auto;
    margin-left: 0;
}

/* Stopka Strony */

footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 20px;
    font-family: sans-serif;
}