/********************Site Fonts and typography******************/

* {
    --mygrey: #e6ecf0;
    --myyellow: #fed044;
    --myturqblue: #1d809f;
    --mybluegray: #5a7f95;
    --myblue: #0c508b;
}

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1em;
    background-color: white;
}

h1,
h2,
h3 {
    color: var(--myblue);
    margin: 0.5em 0;
}

/****************************** Header*************************/
header {
    background-color: var(--mygrey);
    padding: 1rem 2rem;
}

#header-content {
    display: inline-block;
}
#logo {
    width: 5%;
}

#MainTitle {
    display: inline-block;
    padding-left: 1rem;
    color: var(--myblue);
}
/***************Navigation styles************************/
nav {
    background-color: var(--myblue);
    padding: 10px;
}
nav ul {
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: var(--myyellow);
    text-decoration: none;
}

/********************Footer****************************/
#map {
    height: 200px; /* Required for visibility */
    /* width: 50%; */ /* Fills the width of its parent */
    border: 1px solid #ccc;
    border-radius: 8px; /* Optional: rounded corners */
}

#ContactButton {
    color: red;
}

/********************About Us****************************/
.Content {
    display: flex;
    width: 80%;
    flex-direction: column;
    margin: auto;
}

#WorkHistory {
    display: flex;
    width: 60%;
    flex-direction: column;
    color: var(--mydarkblue);
    background-color: var(--mygrey);
}

#BrianImage {
    margin: auto;
    padding: 2em;
}

@media (max-width: 60em) {
    #AboutUs {
        width: 98%;
    }
    #WorkHistory {
        width: 96%;
    }
}
.vision > h4 {
    color: var(--myblue);
}

/********************Test & Tag****************************/
#TestTagIntervals {
    width: 50%;
    border-collapse: collapse;
}

#TestTagIntervals th,
td {
    padding: 10px;
    border: 1px solid #ddd;
}
