* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(212, 211, 208);
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

#logo {
    top: 0;
    width: 300px;
    display: block;
    margin: auto;
}

#navbar {
    z-index: 99999;
    width: 100%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    overflow: auto;
    position: sticky;
    top: 0;
}

#navbar ul {
    display: inline-flex;
    margin: 10px 0px 10px auto;
    width: 100%;
    justify-content: space-evenly;
    list-style: none;
    padding: 0 0 0 0;
}

#navbar ul li a {
    color: black;
    opacity: 1;
    font-size: 1.2rem;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    text-decoration: none;
}

#navbar ul li a:hover {
    text-decoration: underline;
    font-size: 150%;
    transition: all 0.3s;
} 

#intro-section {
    margin: 50px;
    display: flex;
    justify-content: center;
}

.message {
    display: flex;
    margin: 20px;
    width: 1000px;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    text-align: center;
}

.message p {
    font-family: "Poppins", Arial, Helvetica, sans-serif ;
    font-weight: bold;
    word-wrap: break-word;
}

.message img {
    max-width: 100%;
    border: 5px solid black;
}

@media screen and (max-width: 960px) {
    .hide-bg-mobile {
        display: none !important;
    }
}

#about-section {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    background-color: rgb(192, 191, 190);
}

.about-message {
    display: flex;
    margin: 20px;
    width: 1000px;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    text-align: center;
}

.section-heading {
    font-size: 3rem;
    text-align: center;
}

.about-container {
    display: flex;
    justify-content: center;
}

div.my-information {
    display: block;
    font-size: 1.5rem;
    text-align: center;
}

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

.mySlides {
    display: none;
}

img.slide {
    max-height: 900px;
}

.slide {
    max-width: 1280px;
    max-height: 900px;
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 1.2s 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(0, 0, 0, 0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.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;
}

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

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

#contact-section {
    background-color: black;
    margin-top: 50px;
    padding: 30px;
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

#contact-section p {
    margin-right: 10px;
    color: white;
}

#footer {
    border-top: 3px solid white;
    padding-bottom: 10px;
    background-color: black;
}

.copyright {
    font-size: .8rem;
    color: white;
}