@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;100;100&display=swap');

body {
    margin: 5px;
    margin-left: 15px;
    font-family: "Open Sans", "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6, p, button, input {
  font-weight: 100;  
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("start-bg.jpg") center/cover no-repeat;
    filter: blur(var(--blur));
    z-index: -1;
}

hr {
    opacity: 0.5;
}

button, input {
    border: none;
    box-shadow: 5px 3px 0px rgba(0, 0, 0, 0.22);
    border-radius: 0;
    padding: 50px;
    font-size: 35px;
}

button {
    background-color: #0078D7;
    font-weight: 100;
}

input {
    background-color: #EDEDED;
    font-weight: 100
}