:root {
    --feher: #f6f6f6;
    --fekete: #000000;
    --zold: #3c8c7c;
    --punch: #ee7b6f;
}
body {
    background-color: var(--feher);
}

/* Gomb */
.gomb {
    font-size: 24px!important;
    background-color: var(--zold);
    padding: 14px;
    border-radius: 2px;
    color: var(--feher);
    transition: border 0.5s ease;
    border: 5px solid transparent;
}
.gomb:hover {
    transition: border 0.5s ease;
    border: 5px solid var(--punch);
}

.menu-gomb {
    font-size: 16px!important;
    background-color: var(--zold);
    padding: 10px;
    border-radius: 2px;
    color: var(--feher);
    transition: border 0.5s ease;
    border: 5px solid transparent;
    letter-spacing: 0rem;
}
.menu-gomb:hover {
    transition: border 0.5s ease;
}

/* Fej */
.fej {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: calc(100% - 20px);
    gap: 10px;
}

.logo h1 strong {
    color: var(--punch);
}

/* Kezdolap */
.kezdolap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 20px);
    padding: 10px;
    gap: 30px;
}
.kezdolap h1 {
    font-size: 40px!important;
    padding-bottom: 30px;
}

/* Oldal */
.oldal-cim {
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    padding: 10px;
}

.oldal-tartalom {
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    padding: 10px;
    word-break: break-all;
}

/* Méret */
.kozepre {
    display: flex;
    justify-content: center;
}

.w900 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
}

.w1200 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
}

.h100 {
    min-height: 100vh;
    height: 100%;
}