@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #111;
    color: white;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    margin-bottom: 50px;
}

a {
    transition: .5s;
}

main {
    width: 80%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #222;
    border-radius: 15px;
}

main nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

main nav a {
    display: flex;
    background: #333;
    width: 150px;
    height: 75px;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

main nav a:visited {
    color: white;
}

main nav a:hover {
    background: #444;
}

section {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    gap: 15px;
}

.stjanka {
    display: block;
    color: white;
    font-weight: bold;
    background: #111;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.stjanka:hover {
    background: #333;
}

.stjanka:visited {
    color: white;
}

.relax:hover {
    background: hotpink;
}

.chat:hover {
    background: limegreen;
}

footer {
    color: white;
    margin: 15px 0px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    font-family: "Montserrat", sans-serif;
}

footer a {
    text-decoration: none;
}