body{
    margin: 0;
    background: lightblue;
}

#site-title{
    font-family: 'Lalezar', cursive;
    font-size: 50px;
    color: rgb(0, 156, 228);
    margin-left: 100px;
    margin-right: 70px;
}

.menue-item{
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    top: -5px;
    color: rgb(61, 60, 60);
}

header{
    background: rgb(255, 255, 255);
    box-shadow: 0px 2px 6px rgb(109, 109, 109);
    position: sticky;
    top:0;
}

main{
    padding-right: 10%;
    padding-left: 10%;
    margin-top: 30px;
    margin-bottom: 30px;
    
}

.section-title{
    width:100%;
}

section{
    display: inline-block;
    width: 65%;
    background: rgb(255, 255, 255);
    text-align: center;
    margin-right: 16px;
    box-shadow: 2px 0px 5px rgb(85, 85, 85);
}

.content-title{
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 50px;
}

.content-text{
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
}

aside{
    display: inline-block;
    width: 30%;
    vertical-align: top;
    background: rgb(255, 255, 255);
    border-radius: 11px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px rgb(85, 85, 85);;
}

.side-item{
    margin-top: 16px;
    width:100%;
    text-align: center;
    border-bottom: 2px solid rgb(206, 203, 203);
}

.side-item:first-of-type{
    margin-top: 0;
}

.side-item:last-of-type{
    border-bottom: 0px solid rgb(63, 63, 63);
}

.side-item img{
    width:100%;
}

.side-item p{
    font-size: 20px;
}

@media screen and (max-width: 700px) {
    header{
        width:100%;
        text-align: center;
    }

    #site-title{
        display: block;
        font-size: 50px;
        color: rgb(0, 156, 228);
        margin-left: 0;
        margin-right: 0;
    }

    .menue-item{
        top: 0px;
        margin-bottom: 20px;
    }

    section{
        display: block;
        margin: 0;
        width: 100%;
    }

    aside{
        display: block;
        margin: 0;
        width: 100%;
    }

    main{
        padding-right: 2%;
        padding-left: 2%;
    }

    .content-title{
        
        font-size: 40px;
    }
}