body{
    margin: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main{
    flex:1; /* Ez kitöltö a maradék helyett a footer és a main között */
}

/* A header rész tulajdonságai */

.felsosav{
    background-color: rgb(95, 135, 180);
    height: 80px;
    width: 100%;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* A header részben található "gombok" tulajdonságai */

#profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid rgb(3, 79, 167);
  margin-top: -50px;
  margin-left: 350px;
  object-fit: cover;
  object-position: 50% 5%;
  transform: scale(1.2);
}

#profile-img:hover {
    transform: translateY(-5px);
    transition: 0.2s ease;
}

.gombok {
    gap: 20px;
    display: flex;
    gap: 30px;
    margin-left: 700px;
}

#gomb{
    color: white;
    text-decoration: none;
    font-size: 22px;
}

#gomb-act{
    text-decoration: underline;
    color: white;
}

/* ------------------------------------------------------------------ */

#cimdoboz {
    display: flex;
    justify-content: center;
    color: rgb(3, 79, 167);
}

/* Cím és a csík tulajdonságai */

#szurkecsik {
    height: 0px;
    width: 80%;
    border: 1px solid rgba(196, 196, 196, 0.596);
}

#csikbox {
    display: flex;
    justify-content: center;
}

/* Nyelv váltó gomb tulajdonságai */

#nyelv_gomb {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

#magyargomb button, #angolgomb button {
    background-color: rgba(2, 61, 129, 0.849);
    color: white;
    width: 220px;
    height: 40px;
    border-radius: 5px;
    border: none;
}

.gombki:active {
    transform: none;
    box-shadow: none;
}

.gombki:hover {
    cursor: none;
}

.gombbe:active {
    transform: translateY(2px);
    box-shadow: 0 1px #666;
}

.gombbe:hover {
    cursor: pointer;
}
/* Beimportált dokumentum tulajdonságai */

#angoloneletrajz, #magyaroneletrajz {
    display: flex;
    justify-content: center;
}

#imppdf {
    margin-top: 20px;
    width: 1250px;
    height: 1200px;
}

/* Lábrész tulajdonságai */

footer {
    display: flex;
    background-color: rgb(95, 135, 180);
    opacity: 0.8;
    height: 80px;
    align-items: center;
    margin-top: 25px;
}

footer p {
    color: white;
    margin-left: 50px;
}