*{
    margin: 0;
    padding: 0;
    border-style: solid;
    border-width: 0;
    border-color: rgba(0, 0, 0, .15);
}

:root{
    --secondary-background-color: #f7f7f8;
    --secondary-text-color: #333333;
    --primary-accent-color: #ee4710;
    --primary-link-color: #0d6efd;
    --standard-red-color: #fc0005;
}


body{
    font-family: "Noto Sans", sans-serif;
}

button, .button{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #ee4710;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    border-radius: 7px;
    padding: 15px 35px 15px 35px;
    
}

.button:hover{
    text-decoration: none;
}

hr{
    display: flex;
    height: 1px;
    background: rgba(0, 0, 0, .15);
}

a{
    color: var(--primary-link-color);
    text-decoration: none;
    cursor: pointer;
}

a:hover{
    text-decoration: underline;
}

p{
    line-height: 1.3;
    letter-spacing: .3px;
}

textarea{
    font-family: "Noto Sans", sans-serif;
    min-width: 100%;
    max-width: 100%;
    min-height: 4rem;
    field-sizing: content;
}
input, select, textarea {
    height: 50px;
    font-size: 1em;
    border-width: 1px;
    background-color: #f7f7f8;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 5px;
    color: black;
}
select{
    appearance: none;
    background-image: url(../media/Icons/fontawesome-down-chevron.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    height: 50px;
    color: black;
    border-width: 1px;
    border-radius: 7px;
    padding: 15px;
}

/* img{
    width: -webkit-fill-available;
} */