body {
    background-color: rgb(255, 255, 255);
}

h1 {
    /* Centering and making the main title big */
    color: rgb(0, 0, 0);
    padding: 10px;
    background-image: linear-gradient(red, white, darkblue, white, red);
    height: 50px;
    border-style: solid;
    border-color: black;
    text-align: center;
    font-size: 250%;
    font-family:Arial, Helvetica, sans-serif;
}

ul {
    /* Creating a nice background style for the list */
    list-style-type: none;
    font-size: 150%;
    border: 3px solid black;
    background-color: beige;
    font-family:Arial, Helvetica, sans-serif;
}

li {
    /* Makes the list horizontal and spaces the elements */
    display: inline;
    padding: 7.5%;
    text-align: center;
}

    /* Aligning the Text */
p {
    width: 30%;
    font-family: Arial, Helvetica, sans-serif;
}

/* Moving Images */
.image_1 {
    max-height: 20%;
    max-width: 20%;
    float: right;
}

.image_2 {
    max-width: 20%;
    max-height: 20%;
}

/* Moving this text to the right */
p.right {
    width: 30%;
    float: right;
}

a {
    font-family: Arial, Helvetica, sans-serif;
}

iframe.video {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30%;
    height: 30%;
}