* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #a5a5bb;
    color: #222;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a:visited {
    color: inherit;
}

.header {
    background-color: #342559;
    color: #888;
    padding: 1rem;
    padding-bottom: 4rem;
    justify-content: center;
    align-items: center;
    
    display: flex;
    flex-direction: row;
    
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

h1 {
    text-align: center;
    padding-right: 6%;
    font-size: 1.75em;
}

#title {
    color: #BBB;
    font-style: italic;
}

.icon {
    max-width: min(300px, 20%);
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.links {
    text-align: center;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin: 1rem 0;
}

.link-list a {
    text-decoration: none;
    color: #4840d3;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.link-list a:hover {
    color: #fff0a4;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}