/* 
COURSE: PROG1041 - Intro to Programming
PURPOSE: Web Map Webpage
AUTHOR: Carlyle A.
DATE: October 17, 2024
SUBMISSION DATE: October 24, 2024
*/

/* reset block */
* {
    box-sizing: border-box;
}
 
html,
body, 
#map {
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: rgb(57,83,112);
    font-family: "Poppins", sans-serif;
}
/* End block */

/* Pop-up Typography Settings */

h4.title {
    color: rgb(57,83,112);
    font-weight: 500;
}
h3.schoolname {
    color: rgb(245,160,78);
    font-size: 18px;
    font-weight: 600;
}

p.schoolboard {
    margin-top: -1em;
    font-size: 14px;
    color: rgb(245,160,78);
}

p.gradelevel,
p.frenchprograms,
p.contact {
    color: rgb(57,83,112);
}

p.phone,
p.email {
    margin-top: -1em;
    font-size: 14px;
    color: rgb(57,83,112);
}

a.emailaddress {
    color: rgb(57,83,112); 
    font-weight: normal; 
    text-decoration: underline;
}