.container-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.container {
  overflow: hidden;
  height: 850px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

iframe {
  width: 100%;
  height: 100%;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 2px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 20px;
}

/* Add some custom styles */

/* Use white space to create organization */
nav {
    background-color: white;
    box-shadow: none;
}

nav .brand-logo {
    color: black;
    font-weight: bold;
}

nav ul li a {
    color: black;
    font-weight: bold;
}

.container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Use scroll effects to tell a story */
.container:nth-child(odd) {
    animation-name: slide-in-left;
    animation-duration: 1s;
    animation-fill-mode: both; 
}

.container:nth-child(even) {
    animation-name: slide-in-right;
    animation-duration: 1s;
    animation-fill-mode: both; 
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Use bold colors to create contrast and dynamism */
.title {
    background-color:#007bff
	    color:white; 
}

