/*
Theme Name: Twenty Seventeen Child
Them URI: http://example.com/my-custom-theme
Description: A custom theme for WordPress.
Author: theme owner name
Author URI: http://example.com
Template: twentyseventeen
Version: 1.0.0
*/

/* STEP 1: Change the background color of the whole site */
body {
  background-color: #f0f8ff; /* lightblue */
}

/* STEP 2: Make the site title/header HUGE and centered */
.site-title,
h1 {
  font-size: 3rem;
  text-align: center;
  color: rgb(213, 147, 213); /* lightpurple */
}

/* STEP 3: Make all links lightgreen with bold hover */
a {
  color: rgb(164, 222, 164); /* lightgreen */
  font-weight: bold;
}
a:hover {
  color: lightblue; /* lightblue */
  background-color: #e0e0ab; /* lightyellow highlight */
}

.site-title {
  color: pink;
  border-radius: 30px;
}
