/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

/* Apply border-box to all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
  background: url('../images/placeholder-2.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Reset default margins and paddings */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}

div.wrapper {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

#logo {
    height: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 32px;
}

h1 {
    color: yellow;
    margin-bottom: 32px;
}

h2 {
    color: yellow;
    margin-bottom:16px;
}

p {
    color: white;
    margin-bottom: 16px;
}

form {
    margin-bottom: 16px;
    width: 100%;
    max-width: 400px;
}

label {
    color: white;
    font-weight: bold;
}

input[type=date] {
    width: 200px;
    height: 42px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}
input[type=text], input[type=email] {
    width: 100%;
    height: 42px;
    border: none;
    margin-top: 8px;
}

button {
    width: 200px;
    height: 42px;
    background: yellow;
    color: green;
    border-radius: 21px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
    margin-top: 16px;
    margin-bottom: 16px;
}
button:hover {
    background: green;
    color: yellow;
}

ul {
    list-style-type: none;
    color: white;
    font-weight: bold;
    margin-bottom: 16px;
}
li {
    margin-bottom: 8px;
}

