#content{
    margin: 10px auto;
    max-width: 800px;
}

.center{
    text-align: center;
}

.fragment{
    margin: 100px 0;
}

p{
    margin: 0;
    padding: 0;
}

.header{
    font-size: 18px;
    font-weight: bold;
}

.tab{
    margin-right: 20px;
}

.quote{
    text-align: center;
    margin: 100px 50px;
}

.indented{
    text-indent: 50px;
}

.interview p{
    margin-bottom: 5px;
}

#testimonials ul{
    list-style-type: none;
    margin: 0 0 0 -15px;
}

#testimonials li{
    margin-bottom: 5px;
}

#strengths-weaknesses{
    display: flex;
}

#strengths-weaknesses-bottom{
    text-align: center;
    margin-top: 5px;
}

#strengths-weaknesses-bottom ul{
    display: inline-block;
    text-align: left;
    margin-bottom: 0 !important;
}

#strengths-weaknesses-left, #strengths-weaknesses-right{
    width: 50%;
}

#strengths-weaknesses-left{
    margin-right: 20px;
}

#strengths-weaknesses-right{
    margin-left: 20px;
}

.strengths-weaknesses-same{
    list-style-image: url("../img/check.png");
}

.strengths-weaknesses-dif{
    list-style-image: url("../img/x.png");
}

.how-to ol{
    margin-bottom: 10px;
}

#bucket-list{
    text-align: center;
}

#bucket-list ul{
    display: inline-block;
    text-align: left;
}

#bucket-list li{
    padding-left: 20px; 
    list-style-type: none;
}

.bucket-list-checked{
    background: url(../img/checkbox-checked.png) left center no-repeat; 
}

.bucket-list-unchecked{
    background: url(../img/checkbox-unchecked.png) left center no-repeat; 
}

.bucket-list-strikethrough{
    background: url(../img/checkbox-unchecked.png) left center no-repeat; 
    text-decoration: line-through;
}

.justified{
    text-align: justify;
    margin: 100px 50px;
}

#texts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texts-row{
    flex-direction: row;
}

#texts img{
    height: auto;
    width: 250px;
}

.letter{
    width: 95%;
    margin: 0 2.5%;
    max-width: 800px;
    height: auto;
}

/* slideshow code */
* {box-sizing:border-box}

/* #slideshow-fragment{
    position: relative;
} */

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

/* Number text (1/18 etc) */
.slide-number {
    color: black;
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: -30px;
}

.slide-img-caption img{
    position: relative;
}

.slide, .slide img{
    max-width: 800px;
    max-height: 600px;
    text-align: center;
    margin: 0 auto;
}

.slide img{
    width: 100%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 42%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    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(255, 255, 255, 0.5);
}

/* Caption text */
.slide-caption {
    color: white;
    background-color: #0000007a;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 66px;
    width: 100%;
    height: auto;
    text-align: center;
}

.vertical > .slide-img-caption > .slide-caption{
    width: 44.5%;
    margin: 0 27.75%;
}

.slide p{
    text-align: left;
    margin-top: 10px;
    text-indent: 50px;
}

/* The dots/bullets/indicators */
/* #dots-all{
    position: absolute;
    bottom: 30px;
    left: 258px;
} */

.dot1, .dot2 {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px 5px 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

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

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

@-webkit-keyframes fade {
    from {opacity: .75}
    to {opacity: 1}
}

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