﻿/*

Author: Thomas Turnasella
Project: CST 161 Final - Fall 2022
Due Date: 12/20/22
File: contactStyles.css

CSS Stylesheet exclusively for the Contacts page

*/

#contactInfo

{
    width: 80%;
    background-color: navajowhite;
    margin: 3em auto;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#contactInfo article

{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: -1.5em 0.5em;
}

#contactInfo h1

{
    font-family: titleFont;
    color: chocolate;
    text-align: center;
    font-size: 36px;
    padding-top: 1em;
    letter-spacing: 3px;
}

#contactInfo dl

{
    background-color: cornsilk;
    padding: 1em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#leftMush

{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

div

{
    margin: 0em 1em;
}

dt, dd

{
    padding: 0.25em 0em;
}