html {
    background-image: url("Images/gradient\ 1024.png");
    background-repeat: repeat-y;
    background-size: 100% 100%;
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
}

#strip {
    width: 100%;
    height: auto;
    background-color: black;
}

.center {
    text-align: center;
}

section {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 90%;
}

#title {
    width: 100%;
}

img {
    width: 40%;
    padding: 10px;
}

h2, h3, u, ul {
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

p, ul {
    color: white;
    font-size: large;
}

li:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    #strip {
        width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    img {
        width: 200px;
    }
}