body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.background {
    background-image: url(https://image.crcy.de/i/myra-patern2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

header {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 1;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin-top: 120px;
}

.button {
    background-color: #9a40bf;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    margin: 15px 0;
    text-align: center;
    font-size: 18px;
    border-radius: 12px;
    transition: background-color 0.3s;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button img {
    margin-right: 10px;
    width: 28px;
    height: 28px;
}

.button:hover {
    background-color: #d892f4;
}
