body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    /* make overflow fit */
    overflow: hidden;
}

.container {
    display: block;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#A7BDCA, #6A8598);
    /* make the linear go from one side to the other */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 150px;
    background: linear-gradient(#575F6C, #2D354C);
    border-bottom: #2D354C 5px solid;
    color: white;
}

.navbar img {
    width: 350px;
    height: 300px;
    margin-left: 50px;
    margin-bottom: 25px;
}

.navbar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    margin-right: 50px;
    list-style: none;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
}

.navbar ul li a:hover {
    padding-bottom: 10px;
    border-bottom: 5px solid white;
}


.home-wrapper h1 {
    position: absolute;
    top: 30%;
    left: 20%;
    font-family: 'Edo';
    font-style: italic;
    font-size: 60px;
    color: black;
    transform: rotate(-20deg);
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#mainlogo {
    width: 350px;
    height: 350px;
    /* move the img down without moving the text with it */
    margin-top: 280px;
    margin-left: 100px;
    transform: rotate(-10deg);
}

#open {
    color: rgb(73, 253, 19);
    font-size: 50px !important;
    padding: 10px;
}

#closed {
    color: rgb(255, 0, 0);
    font-size: 50px !important;
    padding: 10px;
}

.app-status {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.app-status h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 60px;
    font-weight: 700;
    margin-top: 6em;
}

.app-status p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: -1em;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 150px;
}

.footer h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin-top: 1em;
    color: #e0e6e9;
}

.footer a {
    text-decoration: none;
}

@font-face {
    font-family: 'Edo';
    src: url('fonts/edo.ttf');
}

