@import url('switzer.css');

/*
font-family: 'Switzer-Variable';
font-family: 'Switzer-VariableItalic';
font-family: 'Switzer-Thin';
font-family: 'Switzer-ThinItalic';
font-family: 'Switzer-Extralight';
font-family: 'Switzer-ExtralightItalic';
font-family: 'Switzer-Light';
font-family: 'Switzer-LightItalic';
font-family: 'Switzer-Regular';
font-family: 'Switzer-Italic';
font-family: 'Switzer-Medium';
font-family: 'Switzer-MediumItalic';
font-family: 'Switzer-Semibold';
font-family: 'Switzer-SemiboldItalic';
font-family: 'Switzer-Bold';
font-family: 'Switzer-BoldItalic';
font-family: 'Switzer-Extrabold';
font-family: 'Switzer-ExtraboldItalic';
font-family: 'Switzer-Black';
font-family: 'Switzer-BlackItalic';
*/

@media (prefers-color-scheme: dark) {
  .card {
    /* Your dark mode body styles */
    background-color: #000000;
    color: #ffffff;
  }
}

::selection {
  background-color: rgba(148, 177, 46, 0.7);
    
}

.container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns the card to the left side of the screen */
  height: 100vh;
  background-image: url('../web_images/background.jpg');
  background-size: cover;
  background-position: 77%;
  position: relative;
}

.card {
  background-color: #fff;
  padding: 40px;
  max-width: 40%;
  z-index: 2;
  overflow: hidden;
  text-align: left;
  height: 90.75%; 
    color: #162526;
}

h1 {
  color: #646a5e;
  font-family: 'Switzer-Regular', sans-serif;
    font-size: 60px;
    line-height: 1em;
     font-weight: 100;
}

.name {
  font-family: 'Switzer-Semi-Bold', sans-serif;
    font-weight: 500;
    color: #217399;
}

.card p {
  font-family: 'Switzer-Regular', sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.15;
  margin: 0;
  padding-bottom: 24px;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

@media (max-width: 600px) {
  .card {
    margin-right: 0;
    max-width: none;
    width: 100%;
    margin-left: 0; /* Add this line to align the card to the left on mobile */
  }
}



nav {
  position: absolute;
  left: 0;
  width: 33.33%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  font-family: 'Switzer-Medium', serif;
  font-size: 24px;
  padding: 10px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  background-repeat: no-repeat;
}

nav ul {
  text-align: right;
}

li {
  margin-bottom: 10px;
}

body {
  background-color: #fff;
}