:root {
    --light-background: #fcf9f6;
    --dark-background: #212529;
}

.webmadewell {
    background-color: white;
}

body {
    margin: 0;
}

a {
    color: black;
}

#modal-button {
    position: fixed;
    top: 0px;
    right: 0px;
    margin: 60px;
    z-index: 1000;

    transition: all 0.3s ease-in-out;
}

#modal-button:hover {
    transform: scale(1.3, 1.3);
}

#modal-button a {
    color: white;
    text-decoration: none;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-image: url("assets/landing_image.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--dark-background);
    opacity: 0.4;
  }

.header-section {
    position: relative;
    padding: 15% 0 10%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
    font-family: "Montserrat", sans-serif;
}

.centered-section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
/* 
#examples-row {
    max-width: calc(min(60vw, 900px));
    margin-left: auto;
    margin-right: auto;
} */

h1 {
    font-weight: 500;
}

h2 {
    font-weight: 400;
}

.main-content-wrap {
    position: relative;
    background-color: var(--light-background);
}
.main-content {
    position: relative;
    padding: 40px 0;
    background-color: var(--light-background);
}

.title-row {
    text-align: center;
}

.card .card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}
.carousel {
    height: 80vh;
    width: 100%;
    overflow:hidden;
}
.carousel .carousel-inner {
    height:100%;    
}

.carousel-item { 
    height:100%;
}

.carousel-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

#footer {
    font-size: 0.9rem;
    padding: 15px;
    text-align: center;

    background-color: var(--dark-background);
    color: var(--light-background);
}

.card-text {
    opacity: 0.8;
}