body {
    margin: 0;
    padding: 0;
    font-family: Poetsen One, sans-serif;
    background: #1f1d1d;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4d4848;
    padding: 1px;
    padding-left: 30px;
    text-align: left;
}

.header_button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 30px;
    transition: 0.3s;
}

.header_button:hover {
    color: #bebebe;
    cursor: pointer;
    transition: 0.3s;
    transform: scale(1.1);
}

.main {
    padding-top: 20px;
    padding-bottom: 100px;
    margin: 20px;
    padding-right: 15px;
    padding-left: 0px;
}

.button {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    padding: 20px;
    margin: 0 auto;
    transition: 0.3s;
    background: #cacaca;
    border-radius: 100px;
    font-family: Poetsen One, sans-serif;
    font-size: 19px;
    border: 0;
}

.id {
    font-size: 25px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main img {
    border-radius: 20px;
    padding: 10px;
    max-width: 500px;
    width: 100%;
    height: auto;
}

.footer {
    background: #4d4848;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 15px;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    transition: 0.3s;
}

.footer a:hover {
    color: #bebebe;
    text-decoration: none;
    transition: 0.3s;
}