@font-face {
    font-family: 'WalkThisWay';
    src: url('../fonts/Walk this way.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}



*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

html, body {
    height: 100%;
    width:100%;
}

body {
    margin: 0;
    font-family: "Roboto", "sans-serif";
    line-height: 1.5;
    color: #ccc;
    background-color:#000;
    background-image:url("../images/bck-grunge-3a.jpg");
    background-size: cover;*/
}

.background {
    background-color:#000;
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    opacity:0.6;
/*     background-image: linear-gradient(to bottom, #f0a0, #000a); */
}

h1, h2, h3 {
    font-weight: 400;
    line-height: normal;
    margin: 0.2em 0;
}

h1 {
    font-family: 'WalkThisWay', sans-serif;
    font-size:6em;
    font-weight:500;
    letter-spacing: 0.188em;
}
h2 {
    font-family: 'WalkThisWay', sans-serif;
    font-size:3em;
    font-weight:500;
    letter-spacing: 0.188em;
    text-align:right;
}

a, a:visited {
    text-decoration: none;
    color: #2FACFF;
}

.main-wrapper {
    min-height: 100%;
    display: flex;
    justify-content: center; /* Centrowanie elementów wzdłuż osi głównej (domyślnie poziomej) */
    align-items: center;  /* Centrowanie elementów wzdłuż osi poprzecznej (domyślnie pionowej) */
    /* Jeśli chcemy elementy mieć w kolumnie, wycentrowane: */
    /* flex-direction: column; */
    /* Wtedy justify-content będzie centrować elementy wzdłuż osi pionowej, a align-items wzdłuż osi poziomej. */

}

.main-wrapper .main-content {
    width: auto;
    min-width:45%;
    /* border: 1px solid rgba(0,0,200); */
/*     background-color:#000; */
    /* background-color:#ff6600; */
    opacity:0.8;
    color:white;
    padding:15px;
}

footer {
    position:fixed;
/*     background-color: #fff; */
    bottom:0px;
    right:0px;
    width:100%;
    text-align:right;
    padding:5px;
    opacity:0.8;
    color:black;
}

@media (max-width: 1000px) {
    .main-content  {
        min-width:80%;
    }
}
