/* General Styles */
body {
    margin: 0;
    background-color: hsl(77, 56%, 87%);
}

/* Nav Styles */
nav {
    display: flex;
    background-color: burlywood;
    border: 3px solid navy;
    padding: 10px;
    justify-content: space-between;
}


nav p, nav a {
    font-size: large;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

nav a {
    color: darkolivegreen;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
    text-transform: uppercase;
}

/* Footer Styles */
footer {
    display: flex;
    background-color: burlywood;
    padding: 10px;
    border: 1px solid black;
    justify-content: center;
    font-family: cursive;
    font-size: 15px;
}

footer a {
    color: darkolivegreen;
    text-decoration: dotted;
}

footer a:hover {
    text-transform: uppercase;
    text-decoration: underline;
}

/* Splash Section */
.splash {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 20px; 
    background-color: #5dacbd;
}

.splash h1 {
    font-family: "Baskervville SC";
    font-size: 22px;
    text-align: center;
    color: #800000;
}

.splash img {
    border-radius: 15px;
    border-style: ridge;
    max-width: 16%;
    height: auto;
    margin-bottom: 15px;
}

.splash p {
    color: navy;
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
}

/* Horizontal Rules */
hr {
    border-style: dashed;
}

/* Sections */
section {
    border-radius: 2px;
    border-color: darkslategray;
    border-style: groove;
}

.skills ul{
    display: flex;
    justify-content: space-evenly;
    list-style-type:square;
}

.edu {
    font-weight: 700;
    font-size: 16px;
    background-image: url(https://wallpapers.com/images/hd/georgia-bulldogs-mark-260yu4fkhyng5hbu.jpg);
    background-size: contain;
}

.edu p {
    color: white;
}

.edu h2 {
    color: aqua;
}

/* Section Headings */
section h2 {
    font-family: "Playwrite Deutschland Grundschrift";
    font-size: 22px;
    text-align: center;
    color: #800000;
}

/* Paragraph Styles */
section p {
    font-family: "Brygada 1918";
    color: navy;
    text-align: center;
}

/* link styles */
section a {
    color: darkolivegreen;
    text-decoration: none;
}
section a:hover {
    text-decoration:overline;

}

/* List Styles */
ul {
    font-family: "Brygada 1918";
    color: navy;
    list-style-type:upper-roman
}

dl {
    font-family: "Brygada 1918";
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows:auto;
    gap: 10px;
    justify-items: center;
    align-items: center;
}
dl dt{
    font-weight: bold;
    padding: 20px;
}
dl dd{
    color: navy;
}

/* Project Section */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px;
    align-items: start;
}

.card {
    background-color: #f4f4f9; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-shadow: 0 12px 24px 5px rgba(50, 50, 50, 0.3);
    overflow: hidden; 
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    height: auto;
}

.card h3 {
    margin: 15px 0;
    font-size: 18px;
    color: #333;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Contact Page Styles */
.one-col {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form {

}

form input, form textarea {
    resize: vertical;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}
