/* main.css */
body{
	    width: 100%;
	    height:100vh;
	    position: relative;
	    background-image:url(background.jpg);
	    background-size: cover;
	    background-position: center;
	    overflow: hidden;
  }
header {
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    overflow: hidden;
    height: 56px;
    z-index: 2;
}
p {
  color: white;
}
h2 {
  font-size: 10px;
  color:#ffffff;
  font-weight: bold;
}
.content {
    margin-top: 56px;
    padding: 10px;
    z-index: 1;
    margin-bottom: 56px;
}

button:focus {
    outline: none !important;
}

input {
    outline: transparent none 0;
    font-size: 15px;
    color:#000000;
}

input:focus {
    outline: transparent none 0;
    font-size: 30px;
    color:#ff0000;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

.w3-img {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}