* {
    box-sizing: border-box;
}

#contentwrap {
    max-width: 955px;
    background: #fff;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    font-family: "Dosis", Arial, sans-serif;
    border: 4px solid #777;
    font-size: 18px;
    line-height: 1.3;
}

#contentwrap .icon-1 {
    position: relative;
    top: -1px;
}

#contentwrap .hand {
    position: relative;
    top: -2px;
}

#contentwrap img {
    max-width: 100%;
    height: auto;
}

#contentwrap .nobr {
    white-space: nowrap;
}

#contentwrap h1 {
    font-size: 35px;
    line-height: 1.1;

    color: #fe019c;
}

#contentwrap h2 {
    font-size: 19px;
    margin-bottom: 5px;
    padding: 10px 0 5px;
}

#contentwrap h2.bg {
    background: #000;
    color: #fff;
    padding: 5px;
    text-align: center;
}

#contentwrap h2~p {
    margin-top: 0;
}

#contentwrap ul {
    margin-top: 0;
    padding-top: 0;
    padding-left: 8px;
    margin-left: 8px;
}

#contentwrap li {
    padding: 2px 0;
}

#contentwrap a {
    color: #fe019c;
    text-decoration: none;
}

#contentwrap a:hover {
    color: #fe019c;
    text-decoration: underline;
}

#contentwrap>div>*:first-child {
    margin-top: 0;
}

#contentwrap>div>*:last-child {
    margin-bottom: 0;
}

#contentwrap .center {
    text-align: center;
}

#contentwrap .hide {
    display: none;
}

#contentwrap .header {
    padding: 2% 5%;
}

#contentwrap .main {
    padding: 2% 5%;
}

#contentwrap .flexi {
    display: flex;
    justify-content: space-between;
}

#contentwrap .half {
    width: 48%;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


#contentwrap .slideshow>img {
    animation: opacity 3s forwards;
}

#contentwrap .slideshow {
    position: relative;
}

#contentwrap .slideshow img {
    vertical-align: bottom;
}

#contentwrap .slideshow>img:nth-of-type(1) {
    position: relative;
}

#contentwrap .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 6s linear 0s infinite normal forwards;
}

#contentwrap .slide img:nth-child(2) {
    animation-delay: 3s;
}

@media (max-width: 499px) {
    #contentwrap {
        font-size: 16px;
    }

    #contentwrap h1 {
        font-size: 27px;
    }

    #contentwrap .flexi {
        display: inherit;
    }

    #contentwrap .half {
        width: auto;
    }

    #contentwrap .header {
        display: flex;
        justify-content: center;
    }
}