@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    user-select: none;
}
button {
    background-image: linear-gradient(-70deg, #ff0000, #ffa500, #ffff00, #008000, #0000ff, #4b0082);
    color: white;
    border: 1px solid #4ce;
    padding: 10px 20px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15%;
    padding: 20px 40px;
}
#header {
    background-color: #4ca;
    color: white;
    padding: 20px;
    text-align: center;
}
#header img {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    position: absolute;
    left: 240px;
    top: -2px;
}
#header h1 {
    margin: 0;
    font-size: 3.1em;
    font-weight: 700;
    top: 10px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}
#header a {
    color: white;
    text-decoration: none;
    font-weight: 630;
    margin-top: 10px;
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 1.3em;
    margin-right: 10px;
}
#header a:hover {
    text-decoration: underline;
}