:root {
    --border-color: white;
    --border-width: 3px;
    --border-radious: 10px;

    --background-color-a: grey
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

#fog {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    inset: 0;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    justify-content: center;
}

nav {
    width: 75%;
    height: 2.5rem;
    background-color: var(--background-color-a);
    display: flex;
    justify-content: center;
    border-radius: 0 0 5rem 5rem;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 5rem;
}

nav a {
    text-decoration: none;
    color: black;
    text-align: center;
}

nav a:hover {
    text-decoration: underline;
}



#welcome {
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radious);
    display: flex;
    flex-direction: column;
    width: 50rem;
    padding: 1rem;
    background-color: var(--background-color-a);
}

#profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 40px;
}

#welcome-top {
    display: flex;
    flex-direction: row;
}
#welcome-text {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
}

.row-2 {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

#interests {
    padding: 1rem;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radious) 0 0 var(--border-radious);
    width: 24.75rem;
    background-color: var(--background-color-a);
}

#activities {
    padding: 1rem;
    border: var(--border-width) solid var(--border-color);
    border-radius: 0 var(--border-radious) var(--border-radious) 0;
    width: 24.75rem;
    background-color: var(--background-color-a);
}



.links-content {
    display: grid;
    grid-template-columns: repeat(3, 24.75rem);
    grid-auto-rows: 6rem;
    flex-direction: column;
    padding: 10px;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.links {
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radious) var(--border-radious) var(--border-radious) var(--border-radious);
    width: 24.75rem;
    height: 5rem;
    background-color: var(--background-color-a);
    align-items: center;

    display: flex;
}

.links img {
    width: 5rem;
    height: 5rem;
    padding: 1rem;
    object-fit: contain;
    border-radius: 30%;
}

.links-content a {
    text-decoration: none;
    text-align: center;
    color: black;
}