body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #000000;
    margin: 0;
}

main {
    display: flex;
    flex-direction: row; /* Arrangerer knappene horisontalt */
    align-items: center;
    gap: 10px;
}

button {
    padding: 15px 30px; /* Økt padding for større knapper */
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px; /* Kan også øke font-størrelsen for tydeligere tekst */
    cursor: pointer;
    transition: background-color 0.3s;
    outline: none;
}

button:hover {
    background-color: #00ff00;
}

figure {
    width: 400px;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 50px rgb(255, 255, 255);
}