body {
    background-image: url('HARDY2.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 4em;
    text-shadow:
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         0px  2px 0 #000,
         2px  0px 0 #000,
        -2px  0px 0 #000,
         0px -2px 0 #000;
}

a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: white;
    color: black;
}

.background a {
    display: block;
    background-color: gray;
    margin: 20px auto;
    width: fit-content;
}

#result {
    color: rgb(10, 33, 241);
    font-size: 2.5em;
    font-weight: bold;
    margin: 20px 0;
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 2em;
}

