*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

header {
    background-color: #8EAE89;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 55px;
    text-align: center;
    z-index: 1;
}

.top-bar{
    width: 100%;
    height: 100px;
    padding: 15px;
    background-color:#8EAE89;
    z-index: 1;
}

.description {
    display: inline-block;
    width: 50%;
}

h2 {
    font-size: 37px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    color: #2E6345;
}

#goal {
    margin-bottom: 8rem;
}

#login {
    margin-bottom: 13rem;
}

#features {
    margin-bottom: 5rem;
}

p {
    display: inline-block;
    font-size: 1.3rem;
    color: #2B4865;
    letter-spacing: 0.07rem;
    word-spacing: 0.0625rem;
    font-family: 'Barlow', sans-serif;
    text-align: justify;
    line-height: 175%;
}

main {
    padding: 75px;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    float: right;
    width: 220px;
    right: 13%;
    padding-top: 25px;
}

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

.mySlides2 {
    display: none;
}

.mySlides3 {
    display: none;
}

#features .slideshow-container {
    padding-top: 75px;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #2B4865;
    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(128, 128, 128, 0.8);
}

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

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

img {
    border-color: dimgrey;
    border-style: solid;
    border-radius: 15px;
    border-width: 4px;
}

.bottom-container {
    background-color: #2E6345;
    padding: 3.125rem 0 1.25rem;
    text-align: center;
}

.bottom-container a {
    font-size: 1.3rem;
    color: #EAF6F6;
    font-family: "Poppins", sans-serif;
    margin: 0 1rem;
}

.copyright {
    color: #EAF6F6;
    font-size: 1rem;
    padding: 2rem 0;
}
