
* {
    box-sizing: border-box;
}
.image img{
    width: 100%;
    justify-self: center;
    position: absolute;
    top: 0;
    right: 30px;
    width: 250px;
}

.poster {
    background-color: #FFEBF1;
    margin:auto;
    padding: 10px;
    width:595px;
    height: 842px;
    position: relative;
    flex-direction: column;
}

header {
    border-bottom: 10px; 
    padding-top: 0px;
    font-size: 24px;
    padding-left:10px;
}
body{
    font-family: 'instrument Serif';
    color: #764248;
    display: flex;
    justify-content: center;
}
h1 {
    font-family: 'Lilita One', sans-serif;
    margin: 10px;
}
.title {
    text-align: left;
    color: #764248;
    font-size: 64px;
    line-height: 110px;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px;
    border-top: 2px solid #7d464f;
    height: 260px;
    align-items: start;
}
.event-information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-bottom: 20px 0px;
    margin-bottom: 25px;
    margin: 0 25px 20px 20px;
}
.date,
.location {
    border: 2px solid #764248 ;
    justify-content: center;
    line-height: 5px;
    border-radius: 20px;
    padding: 5px 15px 5px;
}

.schedule-item {
    display: grid; 
    grid-template-columns: 120px 1fr;
    gap: 0px; 
    height: 60px;
}
.time {
    background-color: #FFADC6 ;
    border: 2px solid #764248;
    border-radius: 20px;
    padding: 15px;
    margin: 0 0 4px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.event {
    border: 2px solid #764248;
    border-radius: 20px;
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}
.event:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 120, 180, 0.6);
}

.event::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: skewX(-20deg);
}

.event:hover::before {
    left: 150%;
    transition: 0.7s ease;
}
.Schedule {
    display: grid;
    gap: 10px;
    margin: 0 20px;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  margin-top: 40px;
}

.footer-item {
  color: #FFADC6;
  text-decoration: underline;
}
.footer-item:hover {
    color: #7d464f;
}
