@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat+Alternates:wght@800&family=Poppins&family=Roboto:wght@700&display=swap');

:root{
    --main-font: 'Poppins', sans-serif;
    --logo-font: 'Montserrat Alternates', sans-serif;

    --white-color: #f9f9f9;
    --grey-color: #2c2c32;
    --black-color: #19191c
    
}

html{
  scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

footer{
    font-family: var(--main-font);
    color: var(--white-color);
    margin-top: 300px;
}

.logo{
    margin-top: 200px;
}

.logo h1{
    font-family: var(--logo-font);
    color: var(--white-color);
}
.button-wrapper a{
    color: var(--white-color);
    text-decoration: none;
}
.button-wrapper a:hover{
    color: var(--black-color);
    text-decoration: none;
}

section form {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--main-font);
    /* padding: 40px; */
    /* border-style: solid;
    border-color: var(--black-color);
    border-radius: 20px; */
  }
  
  section input[type='text'],
  section input[type='nrp'],
  section textarea,
  .form-control {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: solid;
    border-color: #d9d9d9;
    outline: none;
    background: whitesmoke;
  }
  
  section input[type='text'],
  section input[type='nrp'] {
    height: 50px;
  }

  section input[type='submit']{
    background-color: #EB5757;
    color: var(--white-color);
    font-family: var(--main-font);
    font-weight: 500;
    padding: 10px;
    width: 400px;
    border-radius: 10px;
    border-color: #EB5757;
  }
