body {
    background-color: thistle;
}

#container {
    background-color: grey;
    font-family: Arial, sans-serif;
}

.inner-content {
    background-color: white;
    border: 1px solid black;
    width: 50%;
}

#page-title {
    font-size: 40px;
    text-decoration: underline;
}

.blue-text {
    color: blue;
}

img {
    max-width: 100%;
}

a {
    color: deeppink;
    text-decoration: none;
}

a:hover {
    color: #333333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #page-title {
        font-size: 25px;
    }

    .inner-content {
        width: 100%;
    }
}
