/* Basic Reset */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family:"Raleway", sans-serif;
}

body, html {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#home {
    background-image: linear-gradient(to right, #494A47 , #80817e);;
}

.logo {
    max-width: 300px;
}

#contact {
    background: #f4f4f4;
    padding: 20px;
  h1{
    padding: 20px
  }
}

.brief{
  padding-top:20px;
  color: #98D7DF;
  font-size: 20px
}

.content {
    max-width: 600px;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
  resize: none;
}

form button {
    padding: 10px;
    background-color: rgba(0,0,0,0);
    color: black;
    border: solid 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #98D7DF;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: absolute;
    width: 100%;
}

footer p {
    margin: 0;
}
