* {box-sizing:border-box}


.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
        background-color: rgba(109, 91, 123,0.8);
}

.text {
    color: white;
    font-size: 60px;
    position: absolute;
    top: 42.5%;
    left: 50%;
    text-align: center;
    display: inline-block;
    transform: translate(-50%, -50%);
    font-family: "Archivo Black";
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    
}

.dotty {
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%)
}

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

.fade {
    animation-name: fade;
    animation-duration: 1.75s;
}

@keyframes fade {
    from {opacity: 0.7}
    to {opacity: 1}
}

body {
    background-color: #f8b195ff;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #c06d84ff;
    font-weight: bold;
}

.nav_links {
    display: block;
    color: #f8b195ff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
    font-family: "Archivo Black";
    font-size: 18px;
    float: left;
    width: 25%;
}

.nav_links:hover {
    background-color: #6d5b7b;
    transition: 0.75s;
}

h2 {
    background-color: #365c7dff;
    text-align: center;
    color: #f8b195ff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    font-family: "Archivo Black";
    font-size: 60px;
}

p {
    color: #365c7dff;
    font-weight: 300;
    display: block;
    padding: 5% 10% 5% 10%;
    font-size: 20px;
    font-family: "Archivo";
}

img {
    filter: brightness(0.8);
}