@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-family: "Sora", sans-serif;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

#user-area {
    display: flex;
    align-items: center;
    gap: 1em;
}

img {
    width: 60px;
    height: auto;
    border-radius: 100%;
}

.h-divider {
    background-color: #ddd;
}

.h-divider {
    width: 75%;
    height: 1px;
}

#container {
    padding: 2.5em 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.links-list, .apps-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1em;
    width: 100%;
}

.link-item, button, .app-item {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 1em 2em;
    border-radius: 1em;
}