@charset "UTF-8"; 
    body {
        background-color:azure;
            
}

h1 {
    font-family: Georgia ;
    text-align: left;
    font-kerning: auto;
    font-weight: Bolder;
    font-size: 325%;
    color: lightcoral;

}
@media only screen and (max-width: 480px) {
h1 {
    font-family: Georgia ;
    text-align: left;
    font-kerning: auto;
    font-weight: Bolder;
    font-size: 100%;
    color: lightcoral;
    
}
}

h2 {
    font-family: Verdana;
    text-align: left;
    font-kerning:auto;
    font-size: 150%;
    color: lightcoral;
}
    @media only screen and (max-width: 480px) {
h2 {
    font-family: Verdana;
    text-align: left;
    font-kerning:auto;
    font-size: 90%;
    color: lightcoral;
}
}

h3 {
    font-family: Verdana;
    text-align: left;
    font-kerning: auto;
    font-size: 140%;
    color: lightcoral;   
}
        
        @media only screen and (max-width: 480px) {
        h3 {
    font-family: Verdana;
    text-align: left;
    font-kerning: auto;
    font-size: 80%;
    color: lightcoral;   
}
}
    


p { 
    font-family: Verdana;
    color:black;
    line-height: 25px;
    text-align: left;
}

ul {
    list-style-type: disc;
    font-family: Verdana;
    color: blue;
    line-height: 25px;
}

a:link {
    color: blue;
    
}

a:hover {
    color: lightpink;
    background-color: darkcyan;
    
}