
body {
    background-image: url("grbg.jpg");
    background-attachment: fixed;
}

form {
    padding: 0;
    margin: 0;
}

input[type=text] {
    color: yellow;
    background-color: blue;
}

div.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 32px;
}

div.header>div {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: bold;
}

div.header>div>p {
    color: yellow;
}

div.content {
    margin-top: 128px;
    margin-left: 128px;
}

a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2 {
    color: red;
    text-align: right;
}

p {
    color: white;
    margin: 0;
    padding: 0;
}
