@import url('https://fonts.googleapis.com/css2?family=Solway&display=swap');
body {background-color: rgb(121, 121, 121); color: rgb(255, 255, 255);}
main {width: 100%; text-align: center;}
.title {margin-top: 50px; display: inline-block;}

/* ================= RESPONSIVE MEDIA QUERIES - MOBILE FIRST ================= */

/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
h1 {font-family: 'Solway', serif; font-size: 32pt; color: rgb(255, 255, 255);}
hr {border-top: 7px dotted rgb(255, 255, 255); margin-top: -15px; border-bottom: 0;}
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) {
    h1 {font-family: 'Solway', serif; font-size: 24pt; color: rgb(255, 255, 255);}
    hr {border-top: 5px dotted rgb(255, 255, 255); margin-top: -15px; border-bottom: 0;}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) { 

}

/* Large devices (laptops/desktops 992px and up) */
@media only screen and (min-width: 992px) {

} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}