/**************************************************************************
                                Global Styles
                                
New Pallete Colors:

Media Break Points:
@media (min-width: 576px) { ... }
@media (min-width: 768px) { ... }
@media (min-width: 992px) { ... }
@media (min-width: 1200px) { ... }
@media (min-width: 1400px) { ... }

// put all hover events in this container
@media (hover: hover) { ... }

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

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialised;
    -moz-osx-font-smoothing: greyscale;
}

body {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000;
    background-color: #ffffff;
}

div {
    position:relative;
}

*: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;
	appearance: textfield;
}


#landing-screen{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left:0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #065699, #467a99, #075799);
}

.title-container {
    width: 80%;
}

.title-container img {
    width: 100%;
}