@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Rajdhani:wght@300;400;500;600;700&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: black;
    color: lavenderblush;
    background-image: url("/images/rednight.jpg");
    background-size: cover;
    background-position: bottom;
}

.container {
    display: flex;
    min-height: 98vh;
    flex-direction: column;
    align-content: space-between;
    justify-content: space-between;
}

.main-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.middle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
}

img {
    border: 0;
}

h1 {
    font-size: 6vw;
    font-weight: 300;
    margin: 1rem;
    margin-top: 15vw;
}

strong {
    font-weight: 600;
}

a,
a:hover {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.mx-1 {
    margin-left: 1em;
    margin-right: 1em;
}

.mx-2 {
    margin-left: 3em;
    margin-right: 3em;
}

.mx-3 {
    margin-left: 5em;
    margin-right: 5em;
}

.my-1 {
    margin-top: 1em;
    margin-bottom: 1em;
}

.my-2 {
    margin-top: 3em;
    margin-bottom: 3em;
}

.my-3 {
    margin-top: 5em;
    margin-bottom: 5em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 3em;
}

.mb-3 {
    margin-bottom: 0em 0em 5em 0em;
}

.ml-1 {
    margin-left: 1em;
}

.ml-2 {
    margin-left: 3em;
}

.ml-3 {
    margin-left: 5em;
}

.under-h1 {
    font-size: 1.1em;
    font-weight: 400;
}

.dot {
    height: .5em;
    width: .5em;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-left: 1em;
    margin-right: 1em;
}

.arrow {
    font-family: 'Lilita One', cursive;
    width: fit-content;
    font-size: 6em;
}

.arrow-active,
.arrow a {
    color: rgb(61, 61, 61);
}

.arrow-hidden {
    color: rgb(0, 0, 0);
}

.arrow-active a:hover {
    color: #bbb;
}

.kublog-link {
    padding: 1em 2em;
    color:antiquewhite;
    margin-top: 2em;
}

.kublog-link:hover {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: .5em;
    color: black;
}

footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    color: rgb(122, 122, 122);
    bottom: 0px;
    cursor: default;
}

@media (max-width: 800px) {
    footer {
        display: flex;
        flex-direction: column-reverse;
    }
    .podpis {
        margin: 0em, 0em, 2em, 0em;
    }
}

footer a {
    color: rgb(122, 122, 122);
}

footer:hover,
footer a {
    color: rgb(219, 219, 219);
}

footer a:hover {
    color: rgb(255, 255, 255);
}

.podpis {
    /*align-self: flex-end;
    padding-right: 3em;*/
}