body {
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: #f0f0f0;
    font-family: "Mogra", system-ui;
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
}

a {
    color: #00a2ff;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 1rem;
    background: linear-gradient(90deg, #00a2ff, #45d6ca);
    border-radius: 15px;
}

header h1 {
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

nav ul li {
    margin: 0 1rem;
}

button {
    background-color: #1a1a1a;
    color: #f0f0f0;
    border: 3px solid #00a2ff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

img {
    width: 57rem;
    height:32rem;
    margin-top: 2rem;
    border-radius: 20px;
}

.section {
    text-align: center;
}

.label {
    display: block;
    margin-top: 1rem;
}

.input {
    display: block;
    width: 50%;
    padding: 0.5rem;
    border: 2px solid #00a2ff;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 0.5rem auto;
}

.input:focus {
    outline: none;
    border-color: #45d6ca;
}

.button {
    width: 25rem;
    height: 2rem;
    background-color: #00a2ff;
    color: #f0f0f0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

footer {
    background: linear-gradient(90deg, #00000000, #1a1a1a, #00000000);
    color: #f0f0f0;
    text-align: center;
    width: 100%;
    padding: 1rem 0 1rem 0;
}

footer p {
    margin: 0;
    display: inline;
}

abbr {
    text-decoration: none;
}

abbr:hover {
    cursor: default;
}


.profile-picture {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 3px solid #00a2ff;
    margin-top: 1rem;
}

hr {
    border: 0;
    height: 1px;
    background: #00a2ff;
    margin: 2rem 0;
}

.logo {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 3px solid #00a2ff;
}