html {
    font-size: 15px;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

/* ///////////////////////////////////////////////// */

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.header-text {
    text-align: center;
    margin-bottom: 5%;
    font-size: 90px;
}

#searchForm {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#searchInput {
    width: 100%;
    height: 100px;
    font-size: 40px;
    background-color: #ffffff;
}

.searchButton {
    margin: 30px auto;
    background-color:#00cb1e; 
    border:none; 
    cursor:pointer;
    font-size: 80px;
    border-radius: 36px;
    padding: 30px;
    width: 50%;
}

#results {
    text-align: center;
    font-size: 36px;
    line-height: 70px;
}

.resultBlockStyle {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #cfcfcf;
  }
#adminAccessButton {
    position: fixed;
    top: 5px;
    left: 5px;
    width: 100px;
    height: 100px;
    font-size: 50px;
    border: 5px dotted #8e8e8e;
    background-color: #771a3a;
}