* {
    font-style: italic;
}

.no-italic {
    font-style: normal;
}

body {
    background-color: rgba(186, 255, 253, 0.5);
    background-image: url('https://www.w3schools.com/css/img_mountains.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
    margin: 0;
    padding: 50px;
    font-family: Arial, sans-serif;
}

.text-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.center-red {
    text-align: center;
    color: red;
    flex: 1;
    font-family: 'Times New Roman', Times, serif;
}

.left-blue {
    text-align: left;
    color: blue;
    flex: 1;
    font-family: 'Verdana', Geneva, sans-serif;
}

.right-green {
    text-align: right;
    color: green;
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
}

.big-text {
    font-size: 300%;
}

.content {
    margin-top: 30px;
    line-height: 1.6;
}
