* {
    margin: 0;
    padding: 0;
    font-family: 'Baloo', cursive;
    box-sizing: border-box;

}

html {

    background: linear-gradient(to bottom right, #FFCC66, #FF9933);
}

#logo {
    height: 12vh;
    display: block;
    max-width: 1000px;
    background-image: url(img/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;

}

#logo:hover {
    background-image: url(img/logo2.png);
    transition: all 0.7s ease;

}

nav ul {
    list-style-type: none;
    display: inline-block;
    float: left;
    padding: 20px;
    margin: 0;
    text-decoration: none;
}

nav a {
    position: relative;
    display: inline-block;
    float: left;
    width: 230px;
    height: 50px;
    background: linear-gradient(to top left, #330000, #FFCC66);
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    color: wheat;
    text-shadow: 3px 2px #0C2419;
    padding: 10px;
    margin: 10px;
    overflow: hidden;
    box-shadow: 8px 8px 15px 0 black;
}

nav a:hover {
    background: linear-gradient(to top left, #FFCC66, #330000);
    transform: scale(1.1);
    transition: all 1s ease;
}

.active {
    background: linear-gradient(to top left, #FFCC66, #330000);
    transform: scale(1.1);
}

#start {
    margin: 30px;
    display: block;
    width: 50%;
    box-shadow: 8px 8px 15px 0 black
}


h1,
h2 {
    display: inline-block;
    font-size: 30px;
    margin-top: 20px;

}



p {
    font-size: 25px;
    padding: 10px;
    text-align: left;
}

h3 {
    font-size: 30px;
    font-style: italic;
}


#gif1 {
    margin: 40px 0;
    box-shadow: 8px 8px 15px 0 black;
}

#kat2 {
    box-shadow: 8px 8px 15px 0 black;
}

#pies3nski {

    font-size: 10px;
    text-decoration: none;
    color: aliceblue;
    text-shadow: 1px 1px black;
    margin-bottom: 1%;
    width: 99%;
    float: right;
}

.img {
    display: inline-grid;
    justify-items: center;

}

#w3,#km1, #wi6, #w4 {
    box-shadow: 8px 8px 15px 0 black;
    border-radius: 20px;
    margin-top: 3%;
}

@media (max-width:450px) {

    nav ul {
        float: none;
        display: block;
    }
    nav a {
        width: 26%;
        height: 50px;
        font-size: 12px;
    }

    .active {
        background: #663300;
        transform: scale(1);
    }

    h1,
    h2,
        {
        margin: 10px;
        font-size: 1rem;
    }

    p {
        display: inline-block;
    }

    img {
        width: 100%;

    }
