body {
    background-color: #e6e2dc;
    font-size: 16px;
}

@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }
    .profilepic {
        width: 25%;
    }
}

::-webkit-scrollbar {
    display: none;
}

.profilepic {
    width: 25%;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    margin-top: 1%;
    margin-bottom: 1%;
}

.nick {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1%;
}

.description {
    font-size: 1.5em;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}

.button-container {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #023047;
}

.links {
    align-items: center;
    text-align: center;
    appearance: none;
    background-color: transparent;
    border: 2px solid #bcc0cc;
    border-radius: 15px;
    box-sizing: border-box;
    color: #023047;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 50%;
    will-change: transform;
}

.links:disabled {
    pointer-events: none;
}

.links:hover {
    color: #0d5d81;
    background-color: #ccd0da;
    box-shadow: rgb(108, 111, 133) 0 8px 15px;
    transform: translateY(-2px);
}

.links:active {
    box-shadow: none;
    transform: translateY(0);
}

.footer {
    background-color: #eff1f5;
    text-align: center;
    margin-top: 2%;
    color: #023047;
    border: none;
    box-shadow: none;
}