body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'roboto mono', sans-serif;
    color: white;
    background-color: #182546;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
  text-size: 10px;
}

#container {
    display: flex;
    width: 90%;
    height: 90%;
}

#image-container {
    flex: 1;
    background: url('poster1.png') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    margin-right: 10px;
}

#text-container {
    flex: 1;
    width: 90%;
    margin: 20px;
    overflow: hidden; /* Hide overor typing animation */
}

p {
  font-size: 14px;
  line-height: 1.7;
}



