* {
    box-sizing: border-box;

}

body {
    background-image: url(../img/pozadi.png)
}

.svet {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

header,
footer {
    text-align: center;
    margin-bottom: 50px;
    color: hsl(212, 100%, 73%);
    background-image: linear-gradient(to right, #131212 0%, black 100%);
    height: 10%;
    width: 100%;
    font-size: 40px;
    position: absolute;

}

header {
    top: 0%;
    left: 0%;
}

footer {
    bottom: -7.5%;
    left: 0%;
}

p,
h2 {
    padding: 4px;
    margin-left: 10px;
}

h2 {
    margin-top: 75px;
}

.kontejner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
}

.boxik {
    width: 230px;
    height: 150px;
    background-color: rgb(228, 239, 253);
    border: solid rgba(0, 0, 0, 0.738);
    border-radius: 15px;
    margin: 5px;
    padding: 0%;
    
}
.textik{
    background-color: #131212d8;
    color: aliceblue;
    width: fit-content;
}
#neco1 {
    background-image: linear-gradient(lightgreen, lightblue);
}

#neco2 {
    background-image: radial-gradient(lightgreen, lightblue 50%);
}

#neco3 {
    background-image: url(../img/eevee.jpg);
    background-size: 50px;
}

#neco4 {
    background-image: url(../img/eevee.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.zpet {
    width: 50px;
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    position: absolute;
    top: 2%;
    left: 2%;
}

a {
    color: azure;
    text-decoration: none;
}