@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500&display=swap');

* {
    box-sizing: border-box;
}

:root {
    font-size: 22px;
}

body {
    background: #222;
    color: #ddd;
    font-family: "space grotesk",sans-serif;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0.5em;
}

.podtext {
    color: #888a;
}

.pridatse {
    text-decoration: none;
    margin: 0.75rem 0;
    cursor: pointer;
    border: #0001 1px solid;
    padding: 0.5em 0.75em;
    font-size: 0.9em;
    border-radius: 0.5em;
    transition: 250ms;

    padding: 0.75em 0.9em;
    font-size: 1em;
    color: #222;
    background: #627e9d;
}

.pridatse:hover {
    background: #374554;
    color: #eeea;

}