body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0e5cc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 500px;
}

header {
    margin-bottom: 20px;
}

h1 {
    color: #333;
}

.intro {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.2em;A
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Megnövelt távolság a gombok között */
}

.link-box {
    display: inline-block;
    background-color: #b07a6d; /* Pasztell kék */
    padding: 15px 30px; /* Nagyobb padding a gombokon */
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.link-box a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.link-box img {
    width: 20px;
    height: 20px;
}

.link-box:hover {
    background-color: #85311c; /* Sötétebb pasztell kék */
}

footer {
    margin-top: 20px;
    color: #777;
}
