/* Victory Christian Fellowship Calendar.CSS File */

/* body { */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-attachment: fixed; */
    /* min-height: 100vh; */
    /* display: flex; */
    /* flex-direction: column; */
/* } */

.container {
  margin-left: auto;
  margin-right: auto;
  width: 1024px;
}

header {
  color: black;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: smaller;
  font-style: italic;
  text-align: center;
}

h1 {
    font-size: 54px;
    color: rgb(122, 127, 127);
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}

h2 {
    font-size: large;
    color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0;
}

nav {
    text-align: center;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    /* transition: transform 0.5s; */
}

nav a {
    background-color: rgb(0 0 0 / 40%);
    color: white;
    border-radius: 7px;
    padding: 5px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background-color: black;
    color: white;
    /* transform: translateY(-5px) */
}

/* Dropdown Button */
.dropbtn {
    background-color: rgb(0 0 0 / 40%);
    border-radius: 9px;
    color: white;
    padding: 5px;
    font-weight: bold;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgb(223, 223, 223);
  color: black;
}

/* Links inside the dropdown */
.dropdown-content a {
  background-color: black;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    border: none;
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: black;
    color: white;
}

footer {
 background-color: transparent;
 color: rgb(0, 0, 0);
 text-align: center; 
 font-size: 17px;
 padding-top: 5px;
 bottom: 0;
 width: 65%;
 margin: auto;
}

@media (max-width: 600px) { 
  .container {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
  }
  header, h1, h2 {
    font-size: 1.2em;
    text-align: center;
    padding: 5px 0;
  }
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    min-width: 100px;
  }
  /* Links inside the dropdown */
  .dropdown-content a {
    padding: 8px 12px;
  }
  nav a, .dropbtn {
    font-size: 14px;
    padding: 5px 2px;
    margin-bottom: 8px;
    display: inline-block;
  }
  .dropdown {
    font-size: 10px;
  }
  nav {
    font-size: 16px;
  }
  p {
    font-size: 10pt;
  }
  img {
    width: 100% !important;
    height: auto !important;
    max-width: 400px; /* or any value you prefer */
  }
  footer {
    width: 100%;
    font-size: 12px;
    position: static;
    bottom: 0;
    left: 0;
  }
}