* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #2d2d2d;
    color: #fdfdfd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1.5em;
    align-items: center;
}

.logo-container {
    width: 80px;
    height: 80px;
    position: relative;
}

.logo-container img {
    width: 100%;
    height: 100%;
}

.links-container {
    display: flex;
    gap: 12px;
}

a:any-link {
    color: #fdfdfd;
    text-decoration: none;
}
section {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}
.icon-wrapper {
    width: 150px;
    height: 150px;
    position: relative;
}
.icon-wrapper img {
    width: 100%;
    height: 100%;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1em;
    padding-left: 1.5em;
}

