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

body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #000000;
    ;
}

.uvod{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50vh;
}

.jmeno{
    padding-top: 0.7em;
    font-size: 8em;
    text-align: center;
    color: rgb(240, 204, 255);
    font-weight: 800;
}

.links{
    text-decoration: none;
    font-size: 2em;
    font-weight: 300;
    color: #ffffff;
    display: block;
    margin: 1.5em;
    transition: scale 0.3s ease-in-out;
}

.links:hover{
    scale: 1.5;
    color: rgb(222, 146, 255);
}
.copy{
    color: white;
    text-align: center;
    margin-top: 20%;
}

@media (max-width: 992px) {
    .uvod{
        height: 90vh;
    }
}