body {
    font-family: 'Roboto', sans-serif; /* Updated font */
    font-weight: 400;
    text-align: left;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F3E1D0;
    align-items: top;
}

#container{
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 20px;
    width: 1040px;
    height: 1880px;
    transform: rotate(90deg);
    position: fixed;
    top: -420px;
    left: 420px;
    border: 1px solid #FF671D;
}

#header {
    height: 10%;
    width: 75%;
    font-size: 2rem; 
}

#message {
    display: grid; /* Updated to grid layout */
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, 1fr); /* 2 rows */
    gap: 4px; /* Added gap between rectangles */
    height: 70%; /* Adjusted height */
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    padding: 20px 0;
}

.channel-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem; /* Adjusted font size */
    background-color: #FF671D; /* Added background color */
    color: #FFFFFF; /* Added text color */
    cursor: pointer;
}

.channel-link:hover {
    background-color: #D84315; /* Darker background color on hover */
}

#lower {
    display: flex;
    flex-direction: column;
    height: 20%;
    width: 1040px;
}

#lowerleft {
    padding: 20px 0;
}

#context, #english, #source {
    font-size: 2rem;   
}

#source {
    font-weight: bold;
}

#year {
    font-size: 2rem;
}

#english {
    font-size: 3rem;   
}
