/* Global Styles */

a:link {
  color: #000000;
  text-decoration: none;
}

a:visited {
  color: #9F2B00;
}

a:hover {
  color: #F6D55C;
}

a:active {
  color: #475C7A;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    top: 0;
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    top: 0;
    width: 100%;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

nav ul {
    display: flex;
    margin: 0;
}

nav li {
    list-style: none;
    margin-left: 30px;
}

nav a {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

main {
    padding: 5px 0 5px 0;
}

section {
    padding: 5px;
    padding-left: 40px;
    padding-right: 40px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
    margin: 4;
    padding: 4;
}

li {
    margin-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Styles for social media icons */
.social-media {
  display: flex;
  justify-content: center;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.social-media a:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Font Awesome classes for social media icons */
.social-media a i {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.social-media a:hover i {
  transform: scale(1.2);
}



