/*
 * Globals
 */

iframe {
  width:100%; 
  height:500px; 
  border: 0; 
  margin: 0; 
  padding: 0; 
  overflow: hidden;
}

 header {
  background-color: #8aa2c8;
}

.navbar{
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

#about {
  background:
  /* top, transparent white, faked with gradient */ 
  linear-gradient(
    rgba(255, 255, 255, 0.75), 
    rgba(255, 255, 255, 0.75)
  ),
  /* bottom, image */
  url(../../media/background_top.png);
  height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

@media screen and (max-width: 768px) {
  #about {
    background-size: 275% 125%;
  }
}

#contact {
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.lead2 {
  font-family: var(--bs-font-sans-serif);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.smalltext {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
  font-family: var(--bs-font-monospace);
  direction: ltr /* rtl:ignore; */;
  unicode-bidi: bidi-override;
}

.fitimg{
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.logo{
  
  max-height: 2rem;
  display: block;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 42em;
}

/*
 * Header
 */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}
.nav-item:hover{
  filter: brightness(200%);
}

#szechenyi-link1{
  border-style: none;
  width: auto;
  height: 64px;
  max-width: auto;
  max-height: 64px;
  top: 61px;
  left: 0px;
  position: fixed;
  z-index: 99;
  display: block;
}
#szechenyi-link1:hover {
  animation-name: zoom;
  animation-duration: 0.5s;
}
@keyframes zoom{
  0%, 100%{
    transform: scale(1) translate(0%, 0%);
  }
  50%{
    transform: scale(1.08) translate(3%, 0%);
  }
}

#szechenyi-link2{
  border-style: none;
  width: 13.5rem;
  height: auto;
  top: 60px;
  right: -5px;
  position: fixed;
  z-index: 99;
  display: block;
}
#szechenyi-link2:hover {
  animation-name: zoom2;
  animation-duration: 0.5s;
}

@keyframes zoom2{
  0%, 100%{
    transform: scale(1) translate(0%, 0%);
  }
  50%{
    transform: scale(1.06) translate(-3%, 3%);
  }
}