@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Helvetica', 'Roboto', sans-serif;
    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 {
    font-size: 5rem;
    line-height: 5rem;
    color: #FF671D;
    height: 70%;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    padding: 20px 0;
    font-weight: bold;
    
}

.keeptogether {
    word-wrap: break-word; /* Added to make the message wrap around even when there are no spaces within the string */
}

#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;   
}



