@media only screen and (max-width: 650px){
    .ade-white-block{
    }
}
@media only screen and (min-width: 650px) and (max-width: 1000px){
    .ade-white-block{
    }
}
@media only screen and (min-width: 1000px){
    .ade-white-block{
    }
}

.link-div{
    display:flex;
    padding-left:16px;
    padding-right:16px;
    flex-direction:column;
}

.link-div a{
    padding:0.2rem;
}

.ade-light-block h1{
}
.tutorial div img{
    width:100%;
    max-width:450px;
    margin:auto;
    padding:1rem;
}
.tutorial p{
    padding:1rem;
    text-align:center;
}

@keyframes blinkTitle{
    0% {
        border: solid 3px red;
    }
    50% {
        border: solid 3px black;
    }
    100% {
        border: solid 3px red;
    }
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    width: auto;
    height:20px;
    margin:auto 0px auto;
    padding: 20px 8px 20px 8px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 16px 16px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.mySlides img {
    box-sizing:border-box;
    border-radius: 15px;
    padding:0.5rem;
    max-height:30rem;
    max-width:100%;
    margin:auto;
    margin-bottom:2rem;
}
.slide-title{
    display:none;
}
.container{
    display:flex;
}
.slide-text{
    display:none;
}
.dot-container{
    margin:auto;
}
#text-zone{
    background: var(--my-golden);
    padding: 1rem;
    text-align: center;    
}
