body
{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: aliceblue;
}

header
{
  background-image: url(Kepek/Szállásaink/hatter.jpg);
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: 15% 20%
}

.Menü:hover
{
    background-color: rgba(227, 227, 227, 0.866);
}

.Menü
{
    margin: 20px;
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    transition: background-color 0.3s ease-in;
    background-color: rgb(255, 255, 255, 0.35);
    border: 2px solid black;
}

nav
{
    justify-content: center;
    display: flex;
}

a
{
    font-size: 25px;   
    text-decoration: none;
    color: black;
}

.regisztracio-wrapper
{
    animation: berepules 1.5s ease-out forwards;
}

#regisztracio
{
    border-radius: 20px;
    height: 50px;
    width: 175px;
    background-color: orange;
    border: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s ease-in;
    font-size: 17px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#regisztracio:hover
{
    cursor: pointer;
    transform: scale(1.2);
}

@keyframes berepules
{
  0%
  {
    transform: translateY(-100px);
    opacity: 0;
  }

  100%
  {
    transform: translateY(0);
    opacity: 1;
  }
}


#sor
{
    display: flex;
    width: 30%;
    height: 50px;
    background-color:white;
    color: black;
    text-align: center;
    font-size: 13px;
    margin: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    top:200px;
    padding: 7px;
    border: 2px solid black;
    border-radius: 20px;
}

.container
{
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 50px;
  padding: 50px;
  
}

.options{
  display:grid;
  gap:15px;
  margin-left: 50px;
}

p{
  font-weight: bold;
  margin-left: 50px;
  font-size: 20px;
}

.elem{
  display: flex;
  align-items: flex-start;
  
}

.jobb {
  display: flex;
  margin-left: 40px;
  flex: 1;
}


.bal{
    width: 250px;
}

.card {
  width: 325px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 490px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 10px;
}

.card p {
  margin: 10px;
  color: gray;
  font-weight: bold;
}

.card button {
  margin: 10px;
  padding: 10px;
  width: calc(100% - 20px);
  background: teal;
  color: white;
  border-radius: 5px;
}

.dropdown {
  width: 250px;
  padding-left: 50px;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  appearance: none; 
  cursor: pointer;
}

.dropdown::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
}

footer
{
    display: flex;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

#FooterLogo
{
    margin-left: 300px;
    width: 200px;
}

#FooterCaption
{
    display: flex;
    margin-left: 315px;
}

#footerfigure
{
    transition: none;
    transform: none;
}

.FooterMenu
{
    padding-top: 10px;
    display: block;
    padding-right: 200px;
}

.FooterMenu a:hover
{
    text-decoration: underline;
}

.FooterMenu h2
{
    margin: 0;
}

button:hover
{
   transform: scale(0.9);
}

button
{
  transition: transform 0.3s ease-in;
}