@font-face {
    font-family: 'poppinsregular';
    src: url('/poppins-regular-webfont.woff2') format('woff2'),
         url('/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    --pozadi:cadetblue;
    --ostatni:rgb(170, 232, 227);
}


header {
    height: 60px;
    width: 100%;
    background-color: var(--pozadi);
    border-radius: 8px;

}

header .mobile, .normal {
    font-size: 25px;
    font-family: 'Courier New', Courier, monospace;
}

.ikonka {
    height: 30px;
    padding-top: 10px;
    padding-right: 10px;
    display: flex;
}

.veci {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: large;
    height: 60px;
    list-style: none;
    transition: all 0.3s ease;
}

.veci p {
    color: white;
}

.main:hover {
    background-color: var(--pozadi);
    transition: all 0.3s ease;
}

.main, .veci, a {
    text-decoration-line: none;
    background-color: var(--ostatni);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 65px;
    width: 100%;
    text-align: center;
}
 .main p {
    padding-top: 20px;
}

.container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
}

.item {
    order: 3;
}

.mobile {
    padding-top: 10px;
}

@media only screen and (max-width: 800px) {
    .mobile {
        padding-top:0px;padding-left:10px;
    }
    
    .normal{
        padding-left:35px;font-size:17px
    }
}