body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    font-size: min(2.5vw, 3vh);
    background-image: url('/assets/Bone-Island-Sky.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

h1 {
    color: #4caf50;
    margin-bottom: 0.6em;
    font-size: 2em;
}

h2 {
    margin: 0 0 0.5em;
    font-size: 1.6em;
}

a {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.1s ease, transform 0.15s ease;
}

a:hover {
     text-decoration: underline;
     color: #1976d2;
     transform: translateX(0.3rem);
 }

.container {
    display: flex;
    flex-direction: column;
    padding: 1em;
    margin-bottom: 20vh;
    margin-top: 2em;
    align-items: center;
    background-color:#2d203e;
    border-radius: 2em;
    border-image: url('/assets/border.png') 90 / 2.5em / 0.5em;
    box-shadow: inset 0 0 5em 2em rgba(0, 0, 0, 1);
}

.title {
    text-align: center;
}

.tools-list {
    padding: 0.5em;
}

.external-list {
    padding: 0.5em;
}

.list {
    display: flex;
    flex-direction: column;
    font-size: 1.4em;
}