@media (min-width:320px) and (max-width:480px)
{

body{
background-color: LightCyan;
color: black;
margin: 2px;
}

dt{
color: black;
font-size: 18px;
text-decoration: underline;
}

dd{
font-size: 15px;
}}

@media (min-width:481px) and (max-width:768px)
{
body{
background-color: LightCyan;
color: black;
margin: 2px;
}

dt{
color: black;
font-size: 19px;
text-decoration: underline;
}

dd{
font-size: 17px;
}}

@media (min-width:769px) and (max-width:1200px)
{

body{
background-color: LightCyan;
color: black;
margin: 2px;
}

dt{
color: black;
font-size: 19px;
text-decoration: underline;
}

dd{
font-size: 17px;
}}

body{
background-color: LightCyan;
color: black;
margin: 2px;
}

dt{
color: black;
font-size: 18px;
text-decoration: underline;
}

dd{
font-size: 15px;
}
