@font-face {
    font-family: logo;
    src: url(../fonts/BankGothic_Bold.ttf);
}

:root {
    --navbar-height: 60px;
    --navbar-color: #0a4fb7;
    --navbar-active-color: #1d73fc;
    --navbar-text-color: white;
    --navbar-logo-font: logo;
}

body {
    font-family: sans-serif;
    background: url(../images/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-user-select: none;  /* safari stop selection */
}

h1, h2, p, ul {
	color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    /*background-color: rgba(0, 0, 0, 0.5);*/
    padding-top: 50px;
    overflow: scroll;     /* ensure scroll bar appear */
}

/* https://www.w3schools.com/css/css_positioning.asp */

.modal-close-button {
    position:absolute;
    top:15px;
    right:15px;
}

.model-content {
    background-color: white;
    padding: 15px;
    /*margin: 5% auto 15% auto;*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    /*position: relative;     !* to allow absolute positioning within the content *!*/
}

button {
    font-family: sans-serif;
    font-size: medium;
    border: none;
    background-color: #1d73fc;
    outline: none;
    cursor: pointer;
    color:white;
    padding: 15px;
    margin: 0;
}

.text-input {
    font-size: medium;
    background-color: #eaeaea;
    width: 100%;
    padding: 12px 12px;
    margin: 5px auto 20px auto;
    box-sizing: border-box;     /* make sure padding does not increase size */
    border: 1px solid darkgray;
}

.invalid-input {
    border: 2px solid red;
}

.input-label {
    margin: 0;
}

.profile-container {
    text-align: center;
}

.profile-image {
    position:center;
    height: 256px;
    width: 256px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}