html {
    width: 100%;
    height: 100%;
}

h2{
    font-family: "Agdasima", sans-serif;
}

p {
    font-family: "Roboto Slab", Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
}


body {
    position: relative;
    margin: 0 0 1rem  0;
    min-height: 100vh;
    width: 100%;
}

#content {
    padding-bottom: 74px;
}

nav li{
    display: inline;
    margin: 0 15px;
}

nav a:hover{
    color: white;
}

nav a{
    text-decoration: none;
    color: white;
    font-family: "Agdasima";
    font-weight: 600;
    font-size: 28px;
}

nav a:visited{
    color: white;
}

nav ul{
    padding: 0;
    margin: 15px;
}

nav {
    position: sticky;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-columns: max-content auto;
    justify-content: center;
    background-color: #a92d04;
    color: white;
    align-items: center;
    z-index: 9999;
}

#about-us h2, #pricing h2, #contact-us h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

footer {
    position: absolute ;
    bottom: 0;
}

#about-us p, #pricing p{
    margin-left: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
#form-container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

#topLogo {
    position: absolute;
    padding: 50px 0;
    margin-top: 50px;
    background-color: #ffffff9f;
    width: 100%;
}

#topLogo img {
    display: block;
    margin: auto;
    max-width: 300px;
}

#pcontainer {
    display: flex;
    flex-direction: column;
}

#pcontainer img {
    width: calc(100vw - 20%);
    padding: 10px;
    background-color: #717171;
    display: block;
    margin: auto;
    max-width: 1000px;
}

@media (max-width: 500px) {
    nav a{
        font-size: 18px;
    }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn-animation {
  animation: 3s fadeIn;
}

#vid {
    width: 100%;
    height: 500px;
    object-fit: cover;
}