@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Shadows+Into+Light&display=swap');

* {
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #313131;
    width: 100%;
    height: 100vh;
}

button {
    cursor: pointer;
    /* color: #313131; */
}

ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

a {
    text-decoration: none;
}

a, button, input {
    transition: filter 0.3s;
}

/*a:hover {*/
    /* text-decoration: underline;*/
/*}*/

a:hover, button:hover, input:hover {
    filter: brightness(125%);
}

textarea:focus, input:focus{
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.success {
    background: limegreen;
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 15px;
}

.error {
    background: firebrick;
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 15px;
}

.dont-break-out {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
  
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
  
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
