body {
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("https://img.freepik.com/free-photo/ingredients-near-pizza_23-2147772081.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.3);    margin: 0 ;
    width: 800px;
    padding: 20px;
    border-radius: 10px;
}
.outer-container{
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1 {
    background-color: rgba(255, 255, 255, 0.7); 
    border-radius: 10px;
    text-align: center;
    margin-top: 0;
    color: black;
}
h1:hover{
    color: orangered;
    background-color: lemonchiffon;
}

.contact-form {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #777;
    background-color: #555;
    color: #fff;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
.form-group input{
    padding-left: 0px;
    padding-right: 0px;
}
.form-group textarea{
    padding-left:0;
    padding-right: 0;
}
.submit{
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.navbar {
    background-color: #333;
    overflow: hidden;
}

/* Style for the navigation links */
.nav-options a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: larger;
}

/* Style for the logo */
.navbar {
    display:flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 20px; */
}

/* Change the color of the links on hover */
.nav-options a:hover {
    background-color: #ddd;
    color: black;
    display: flex;
    align-items: center;
}
.logo{
    background-image: url("./images/logo.png");
    width: 200px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
}

.login{
    background-image: url("./images/icons8-male-user-white.png");
    background-repeat: no-repeat;
    height:22px;
    background-size: contain;
    /* margin-left: 5px; */
}
.login p{
    display: inline;
    margin-left: 40px;
}
.login:hover{
    background-image: url("./images/icons8-male-user-black.png");
    background-repeat: no-repeat;
    height: 22px;
}
.fb-logo:hover{   
    display: inline-block;
      width: 48px;
      height: 48px;
      border: none;
    background-color: #d8dddf;
    box-shadow: 0 0 5px #97d6ef;
      border-radius: 50%; 
  }
  .insta-logo:hover{
      display: inline-block;
      width: 47px;
      height: 47px;
      border: none;
    background-color: #d8dddf;
    box-shadow: 0 0 5px #b31c23;
      border-radius: 25%; 
  }
  .linkedin-logo:hover{
      display: inline-block;
      width: 47px;
      height: 47px;
      border: none;
      background-color: #d8dddf;
      box-shadow: 0 0 5px #1f55b9;
      border-radius: 25%; 
  }
  .twitter-logo:hover{
      display: inline-block;
      width: 47px;
      height: 47px;
      border: none;
      background-color: #d8dddf;
      box-shadow: 0 0 5px #1f55b9;
      border-radius: 25%; 
  }
  .contack-nav{
    background-color: #ddd;
    color: black !important;
  }