

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --font-primary: 'Roboto', sans-serif;

  --color-black: rgb(0, 0, 0);
  --color-white: rgb(255, 255, 255);
  --color-red: rgb(213, 39, 39);

  --radius: 0.25rem;
}


/*
========
STYLES
========
*/

*,
*::after,
*::before {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  width: 0;
  background: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-black);
}

body {
  width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-white);
}

.center {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.title {
  font-size: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.input-label {
  font-size: 1.4rem;
  text-align: left;
  font-weight: bold;
  padding-bottom: 0.4rem;
}

input,
textarea {
  width: 100%;
  margin-bottom: 0.8rem;
  padding: 0.4rem;
  border: 1px solid var(--color-black);
  font-size: 1.2rem;
  font-family: var(--font-primary);
  font-weight: normal;
  color: var(--color-black);
  resize: none;
  outline: none;
  border-radius: var(--radius);
}

.option {
  font-size: 1.2rem;
  padding: 0.4rem;
  border: 1px solid transparent;
  border: 1px solid var(--color-black);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.option.selected {
  background-color: var(--color-black);
  color: var(--color-white);
}

.submit-button {
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: var(--radius);
  border: 1px solid var(--color-black);
  font-size: 1.45rem;
  padding: 0.6rem 1rem;
  margin-top: 1.6rem;
  cursor: pointer;
}
