body {
    background-color: #101010;
    color: #f0f0f0;
    font-family: sans-serif;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: 50px;
    margin-right: 50px;
}

h1 {
    font-size: 70px;
    text-align: center;
    margin: 0;
}

p {
    margin-top: 1.5rem;
    font-size: 40px;
    text-align: center;
}

img {
    margin-top: 1.75rem;
    max-width: 450px;
}

button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #36393e;
    border: none;
    color: #f0f0f0;
    padding: 12px 12px;
    font-size: 4em;
    border-radius: 15px;
    transition: background-color 0.5s;
    cursor: pointer;
}

button:hover {
    background-color: #43474e;
    box-shadow: 0 0 10px 2px #b6b8b9;
    transform: translateY(-1px);
}