@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');

body {
    margin: 0;
    background-color: white;
    font-family: "Roboto", system-ui;
}

.content {
    position: absolute;
    top:60%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 50%;
}

.content .pages {
    font-size: 1.5em;
    height: fit-content;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
}

.content .pages .link {
    display: inline-block;      /* aby šířka byla podle obsahu */
    margin: 0 auto;             /* zarovná na střed (funguje s block) */
    padding: 0.3rem 1rem;             

    text-decoration: none;
    border-radius: 30px;     
}
   

.content .pages .link:hover{
    background-color: #027bfc;
    cursor: pointer; 
    color: white;
}

.content .pages .link:active  {
    background-color: #026bdb;
    color: white;
}

.home {
    background: transparent;
    border: none;
}

.home:hover {
    cursor: pointer;
}

.theme {
    max-width: 3rem;
    max-height: 3rem;
    margin-bottom: 2rem;
    border: none;
    background: none;
}

.theme img{
    max-width: 3rem;
    max-height: 3rem;
}

.theme:hover {
    cursor: pointer;
}

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

}