/* Стилизиране на тялото на страницата. */
* {
	outline: none;
}
html {
    margin: 0px;
    height: 100%;
    width: 100%;
 }
body{
    margin: 0px;
    min-height: 100%;
    width: 100%;
    background: url("../img/soccer-background.png");
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.281);
}
body::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}
/* Край на стилизирането на тялото на страницата. */
/* Стилизиране на контейнера и съдържащите се в него поле и бутон. */
.section{
    border-radius: 20px;
}
button:hover{
    background: #2ecc71 !important;
    border-color: #2ecc71 !important;
}
.input-space{
    border-color: #676867 !important;
    text-align: center;
}
.input-space:focus{
    border-color: #3498db !important;
    border-radius: 10px !important;
}
/* Край на стилизирането на контейнера. */
/* Позициониране и стилизиране на логото */
.navbar-brand { 
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
}
#logo{
  font-size: 25px;
}