* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, rgb(175, 175, 188), rgb(135, 133, 135),  rgb(198, 198, 205));
}

.tytle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px 40px 30px;
    border-style: solid;
    border-color: rgb(182, 182, 235);
    border-radius: 20px;
}

h1 {
    text-align: center;
    background-color: none;
    font-size: 30px;
    font-family: Tahoma;
    width: 80%;
}

h5 {
    display: flex;
    text-align: center;
    padding: 0;
    margin: 8px;
    border: none;
    font-size: 18px;
    font-family: Tahoma;
}

.flex-cont {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    text-align: center;

}



.piccage {
  zoom: 0.9;
}

.flexitem-left {
    background: linear-gradient(to right, rgb(168, 168, 168), rgb(206, 206, 206));
    padding: 20px 30px 20px 30px;
    margin: 20px 50px 20px 50px;
    flex: 50%;
    border: 6px solid rgb(30, 30, 30);
    border-radius: 15px;
}

.flexitem-right {
    background: linear-gradient(rgb(206, 206, 206), rgb(168, 168, 168));
    padding: 20px 30px 20px 30px;
    margin: 20px 50px 20px 50px;
    flex: 50%;
    border: 6px solid rgb(30, 30, 30);
    border-radius: 15px;
    
}

.blurb {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsiv layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
    .flex-cont {
        flex-direction: column;
    }
}
