header {
    background-color: black;
    margin: 0px;
    box-sizing: border-box;
    height: 70px;
  
  }
  
  header h1 {
    font-size: 25px;
    color: aliceblue;
    position: absolute;
    top: 10px;
    left: 500px;
    word-spacing: 150px;
    font-family: roboto;
  
  
  
  
  }
  .buttonmain{
    color: aliceblue;
    position: absolute;
    font-family: roboto;
    font-size: 25px;
    left: 28%;
    top: 30px;
  }
  .buttonbrowse{
    color: aliceblue;
    position: absolute;
    font-family: roboto;
    font-size: 25px;
    left: 47%; 
    top: 30px; 
  }
  .buttoncontact{ 
    color: aliceblue;
    position: absolute;
    font-family: roboto;
    font-size: 25px;
    left: 37%; 
    top: 30px; 
  }
  

  
  
  header h3 {
    color: aliceblue;
    font-style: italic;
    position: absolute;
    top: -23px;
    left: 65px;
    font-size: 40px;
  
  }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.container {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white background */
    padding: 40px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    width: 300px; /* Set a fixed width for the form */
    text-align: center;
}

h1 {
    margin-bottom: 20px; /* Space below the heading */
}

.input-group {
    margin-bottom: 20px; /* Space between input fields */
}

input[type="text"],
input[type="password"] {
    width: 100%; /* Full width */
    padding: 10px; /* Inner padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.2); /* Slightly transparent input background */
    color: #fff; /* White text */
    font-size: 16px; /* Font size */
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none; /* Remove outline on focus */
    background-color: rgba(255, 255, 255, 0.3); /* Darker transparent input background on focus */
}

.button {
    padding: 10px 20px; /* Padding for the button */
    background-color: #007BFF; /* Blue background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size */
    width: 100%; /* Full width */
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}