/* Add styling here */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c2c2c;
    color: #fff;
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #5e5e5e;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-family: 'Varela Round', sans-serif;
    margin: 0;
}

.header-text {
font-family: 'Varela Round', sans-serif;
font-size: 2em;
display: inline-block;
}

header a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

header img {
    max-width: 50%;
}

/* main */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

main h2 {
    font-family: 'Varela Round', sans-serif;
    margin: 0;
}

main img {
    max-width: 95%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

main img:hover {
    transform: scale(1.05);
}

main p {
    text-align: center;
    margin: 20px 0;
}

.message {
    text-align: center;
    font-family: 'Varela Round', sans-serif;
    height: 450px;
    margin: 0;
    justify-content: center;
}

.img-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.arrow {
    position: absolute;
    bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.arrow i {
    font-size: 3em;
}

.arrow-left {
    position: absolute;
    right: 600px;
}

.arrow-right {
    position: absolute;
    left: 600px;
}

.animate-right {
  animation: slideRight 0.35s ease-in-out;
}

.animate-left {
  animation: slideLeft 0.35s ease-in-out;
}

@keyframes slideRight {
  from {transform: translateX(0); opacity: 1;}
  to {transform: translateX(100%); opacity: 0;}
}

@keyframes slideLeft {
  from {transform: translateX(0); opacity: 1;}
  to {transform: translateX(-100%); opacity: 0;}
}

.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
}

.active {
    background-color: #007bff;
}

@media only screen and (max-width: 600px) {
    .arrow {
        font-size: 2em;
    }
}

/* footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #4b4b4b;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

footer img{
    max-width: 50%;
}