﻿body {
    width: 100%;
    text-align: center;
    margin: auto;
    background: #000;
    font-family: 'Segoe UI Light';
}

a{text-decoration: none;
      animation: glow 1s ease-in-out infinite alternate;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
}
h1{
    margin: 0;
}

a, h1, #textbox, #button{
    color: #fff;
    animation: glow 1s ease-in-out infinite alternate;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
}

.right{
    float: right;
}
	footer{
    bottom: 0;
    height: 70px;
    left: 0;
    position: absolute;
    width: 100%;
}
.trazilica{
    margin-top: 20%;
}
#textbox {
    width: 400px;
    height: 50px;
    font-size: xx-large;
    border-radius: 35px;
    background-color: #333;
    padding-left: 25px;
}

#button {
    width: 140px;
    height: 53px;
    font-size: xx-large;
    background-color: #333;
    border-radius: 35px;
}

input{
    border: inset 1px #000;
}

.glow {
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 1px #fff;
    }

    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #0edee6;
    }
}