* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    color: white;
    text-align: center;
}

body {
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.paint-header {
    padding-top: 50px;
    padding-bottom: 10px;
    font-size: 70px;
    font-family: copperplate, sans-serif;
    display: inline-block;
}

.paint-list {
    font-family: Verdana, sans-serif;
    font-weight: 200;
}

.paint-list h2 {
    font-size: 40px;
}

.paint-list p {
    padding: 5px;
}

#welcome-message {
    font-size: 20px;
    font-weight: bolder;
    padding-bottom: 50px;
}

.red-paint {
    background-color: #f52525;
    padding: 40px;
    width: 100%;
}

.blue-paint {
    background-color: #2676ff;
    padding: 40px;
    width: 100%;
}

.pink-paint {
    background-color: #ff00a2;
    padding: 40px;
    width: 100%;
}

.green-paint {
    background-color: #0ea03f;
    padding: 40px;
    width: 100%;
}

.custom-paint {
    background-color: #8400ff9d;
    padding: 40px;
    width: 100%;
}

.custom-paint h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.faq {
    margin: 20px;
}

.faq h2 {
    font-size: 50px;
    padding-bottom: 10px;
}

.faq p {
    font-size: 20px;
    padding: 5px;
}

footer p {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 50px;
    font-weight: bolder;
    font-family: 'Lucida Sans', sans-serif;
}

.paint-logo {
    width: 70px;
    height: 70px;
    border-radius: 20%;
}