* {
    box-sizing: border-box;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

nav {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.75rem;
    background-color: rgb(167, 182, 255);
    margin-bottom: 5px;
    box-shadow: 0 0 5px 5px rgba(212, 255, 209, 0.53);
}

.imagebox {
    display: flex;
    width: 100vw;
    height: 80vh;
    position: relative;
}

img {
    position: absolute;
    width: 100%;
    height: 95%;
    object-fit: cover;
    transform: translateX(100%);
}
img.on {
    transform: translateX(0);
    transition: all 3s ease-in;
}
img.off {
    transform: translateX(-100%);
    transition: all 3s ease-in;
}

.nav-dots {
    position: relative;
    bottom: 30px;
    width: 250px;
    height: 60px;
    border-radius: 25px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}
.dot {
    height: 40px;
    width: 40px;
    border: 1.5px solid black;
    border-radius: 20px;
    margin: 0 5px;
    background-color: #fff;
    transition: all 0.5s ease-in;
}
.dot.selected {
    background-color: rgb(182, 182, 182);
}

footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: rgb(108, 132, 249);
}
