.title {
    text-align: center;
    box-shadow: inset;
}

header {
    background-color: rgb(155, 0, 2);
    /* color: rgba(212, 122, 122, 0.772); */
    color: rgb(211, 155, 154);
    padding: 20px;
}

body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(155, 0, 2);
    /* margin: 20px; */
    /* padding: 0px 200px; */
    /* background-color: #ccc ; */
    background-color: rgba(212, 122, 122, 0.772);
    /* background-color: rgb(211, 155, 154); */
    /* background-image: url('code-1076536_1280.jpg'); */
    /* background-blend-mode: lighten; */
    /* background-attachment: fixed; */
    /* background-size: 100%; */
}

p {
    font-size: 16pt;
}

img {
    vertical-align: middle;
}

legend {
    font-size: x-large;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.carousel-container {
    max-width: 800px /* 1000px */;
    position: relative;
    margin: auto;
    text-align: center;
}

.carousel-page {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 44%;
    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;
    color: #444;
}

.prev {
    left: -5%;
}

.next {
    right: -5%;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.4);
}

.scroll-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 5px 5px;
    /* background-color: #bbb; */
    background-color: rgb(187, 120, 122);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .scroll-dot:hover {
    /* background-color: #717171; */
    background-color: rgb(113, 0, 2);
}

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

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

.slide {
    animation-name: slide;
    animation-duration: 3s;
}

@keyframes slide {
    0% {transform: translateX(-100%)}
    /* 20% {transform: translateX(50%)}
    40% {transform: translateX(-35%)}
    60% {transform: translateX(20%)}
    80% {transform: translateX(-5%)} */
    90% {transform: translateX(0.25%)}
    100% {transform: translateX(0%)}
}

form {
    padding-bottom: 20px;
}

footer {
    margin-top: 20px;
}