* {
    font-weight: normal;
}
body {
    background-color: #cebcee;
    background-image: url("https://softscars.com/bg2.gif");
    color: white;
    font-family: "Georgia";
    font-weight: 100;
    height: 100%;
    margin: 0;
    padding: 1em;
    box-sizing: border-box;
}
.main {
    width: 45%;
    margin: auto;
}
.title {
    font-size: 2em;
    text-align: center;
    margin: 0;
    margin-bottom: 0.5em;
    text-shadow: 10px 10px 8px rgba(0, 0, 0, 0.30);
    font-weight: bold;
}
.content {
    display: flex;
    justify-content: space-evenly;
    gap: 1em;
    margin-bottom: 1em;
    padding: 0;
}
.box {
    background-color: #cebcee;
    border: solid 2px white;
    width: 100%;
    padding: 1.5em 0.5em 0.5em 0.5em;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.30);
    justify-content: center;
    align-items: center;
}
.box:nth-child(1) {
    flex: 2 2 auto;
}
.box:nth-child(2) {
  padding: 1em 1em 1em 1em;
  
}
.container {
  display: grid;
  place-items: center; /* Aligns items both vertically and horizontally at the center */
  height: 300px; /* Set a height for the container */
}
.images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
  margin-bottom: 1em;
}
.images:nth-child(2) {
  margin-bottom: 0;
}
.images img {
  width: 100%;
  height: auto;
}
hr {
    height: 2px;
    background-color: white;
    border: none;
}
a {
    color: white;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
iframe {
  border: solid 2px white;
  background-color: #cebcee;
  padding: 1em;
  box-sizing: border-box;
  box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.30);
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
}
@media screen and (max-width: 1020px) {
    .main {
        width: 95%;
    }
    .box {
        padding-top: 1.5em !important;
    }
    .content {
        flex-direction: column;
    }
}