* {
    font-family: helvetica, tahoma, geneva, sans-serif;
    margin: 0;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: black;
    height: 80px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin: 300px;
}

ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 60px;
}

li {
    list-style-type: none;
    font-size: large;
}

a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 15px;
    padding: 15px;
    width: fit-content;
}

header a:link {
    text-decoration: none;
    color: whitesmoke;
    padding: 10px;
}

header a:hover {
    background-color: whitesmoke;
    color: black;
}

header a:visited {
    text-decoration: wavy;
}

.cta {
    padding: 15px;
    border: solid lightblue;
}

.cta:hover {
    background-color: lightblue;
    color: black;
}

.cta:visited {
    border: solid darkblue;
    color-scheme: lightblue;
}

footer {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: black;
    height: 80px;
}

span {
    color: whitesmoke;
}

section {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    border-radius: 20px;
    box-shadow: 8px 8px lightgray;
    max-width: 300px;
    padding: 20px;
    margin: 20px;
    justify-content: center;
}

.card-image {
    width: 300px;
    border-radius: 15px;
}

.card-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: black;
    border: 1px solid whitesmoke;
    border-radius: 8px;
    color: whitesmoke;
    text-decoration: none;
    margin: 15px;
}

.card-button:hover {
    background-color: whitesmoke;
    color: black;
}

.card-description {
    text-align: center;
    color: whitesmoke;
    font-family: 'american typewriter';
}

.card-title {
    color: whitesmoke;
    margin-bottom: 15px;
}

.container {
    display: flex;
    background-image: url("../media/dwight-peaking.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.container-text {
    padding: 80px;
    align-items: flex-end;
    text-align: center;
    font-size: 60px;
    color: whitesmoke;
}
.tagline {
    color: whitesmoke;
    font-weight: 300;
    font-size: 35px;
}

p {
    margin-left: 250px;
    margin-right: 250px;
    margin-top: 10px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'american typewriter';
    font-weight: 400;
    font-size: 70px;
    text-align: center;
    margin: 20px;
}

h2 {
    margin: 30px;
    text-align: center;
}