header {
    background-image: url(media/header.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 30vh;
}

nav {
    background-color: darkslategray;
}

body {
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h1 {
    text-align: center;
    margin-top: 5px;
    font-size: xx-large;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
}

.secton {
    display: flex;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 300px;
    margin: 10px;
}

img {
    width: 100%;
    height: auto;
}

nav a {
    text-decoration: none;
    color: inherit;
}

.container {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1 1 400px;
    min-width: 250px;
}

.card {
    background-color: #f0f0f0;
    border-top: 4px solid #999;
    padding: 10px;
    flex: 1 1 200px;
    box-sizing: border-box;
}

.card2 {
    padding: 10px;
    flex: 1 1 200px;
    box-sizing: border-box;
}

.card-header {
    font-weight: bold;
    background-color: #e0e0e0;
    padding: 5px 0;
    margin-bottom: 10px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

table {
    vertical-align: middle;
}

.me {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    gap: 20px;
    text-align: left;
    align-self: flex-start;
}

.me h1 {
    margin: 0;
    font-size: xx-large;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.me p {
    margin: 0;
    flex: 1;
}

.logo {
    height: 24px;
    width: auto;
}

.picme {
    height: 200px;
    width: auto;
}

.pitch {
    height: 250px;
    width: auto;
}