body {
    margin: 0;
    font-family: Trebuchet MS, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: bold;
    
}

.box1 {
    background-color: green;
    color: white;
    font-family: 'Arial', sans-serif;  
}
.box2 {
    background-color: white;
    color: black;
    font-family: 'Times New Roman', serif;  
}
.box3 {
    background-color: red;
    color: white;
    font-family: 'Georgia', serif;  
}