body {
    background-color:burlywood;
    background-image: url("other files/Vintage Harmonies.png");
    background-size: 512px;
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.title {
    background-color: yellowgreen;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: 16px; 
    width: fit-content;
    justify-self: center;
    border-style:outset;
    border-radius: 10px;
    border-color: #7ebf30; 
    padding: 16px;
    margin-top: 2em;
}

.activity {
    background-color: palegreen;
    border-width: 4px;
    border-color: black;
    border-style: dashed;
    margin-top: 16px;
    margin-bottom: 16px;
}

.pageframe {
    background-color: rgba(255, 235, 205, 0.8);
    margin: 12rem min(12rem, 4%);
    padding: 1rem;
}

.character_frame {
    background-color: #7ebf30;
    border-radius: 32px;
    margin: 16px;
    padding: 16px; 
    display: flex;
    gap: 32px;
    justify-content: flex-start;
}

.dialog_box {
    background-color:khaki;
    flex-grow: 1;
    margin-top: 16px;
    margin-bottom: 16px;
    padding:16px;
    border-radius: 32px;
    transition: height 0.5s;
    
    & > h2 {
      font-size: 2.5rem;
    }
    
    & > p {
      font-size: 2rem;
    }
}

.option_box {
    display: grid;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 4px;
}

.sprite {
    transition: transform 0.5s
}

.sprite:active {
    transform: scaleY(90%) scaleX(111%) translateY(1rem);
}

.bounce {
    transform: translateY(1rem);
}

h1 {
    text-align: center;
}

h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 32px;
}

p {
    font-family: sans-serif;
    font-size: 1.5rem;
}

button {
    background-color:#f0f6a2;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 16px;
    transition: transform 0.2s ease-out
}

button:active {
    transform: scaleX(80%) scaleY(125%);
}




