* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Light", sans-serif;
    color: white;
}

body {
    height: auto;
    background-color: #0f172a;
    max-width: 60rem;
    margin: 0 auto;
}

header {
    width: 90rem;
    margin: 0 auto;
}

.header-title {
    display: flex;
    justify-content: flex-start;
    padding: 2rem;
}

.header-title a {
    display:flex;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    align-items: center;
}

.header-title h1 {
    font-size: xx-large;
    font-weight: normal;
    text-align: left;
}

.header-title img {
    width: 3rem;
    height: auto;
}

#introduction {
    text-align: center;
    line-height: 3rem;
    margin: 4rem 0
}

#introduction > h2 {
    font-size: xxx-large;
}

#introduction > p {
    font-weight: lighter;
    font-size: larger;
    color: #94a3b8
}

section {
    margin-bottom: 2rem;
}

.grid-container {
    padding: 1rem;
    border-radius: 1.5rem;
}

.grid-container > h2 {
    padding-bottom: 1rem;
    border-bottom: solid 1px white;
    font-size: x-large;
}

.grid-container > h3 {
    padding-bottom: 1rem;
    border-bottom: solid 1px lightgrey;
}

.grid {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 2rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.button {
    display: flex;
    min-width: calc((100% - 6rem) / 4);
    flex-basis: calc((100% - 6rem) / 4);
    height: 4rem;
    border-radius: 0.5rem;
    background-color: lightgrey;
    align-items: center;
    padding: 1rem;
    justify-content: left;
    gap: 1rem;
    text-decoration: none;
}

.button p {
    width: 75%;
    height: auto;
    font-size: 1.1rem;
    color: black;
}

.button img {
    width: 20%;
    height: auto;
}

.html-button {
    background-color: #FFB38E;
}

.html-button:hover {
    background-color: #ff803a;
}

.css-button {
    background-color: #FFD166;
}

.css-button:hover {
    background-color: #FFB300;
}

.javascript-button {
    background-color: #06D6A0;
}

.javascript-button:hover {
    background-color: #00FF7F;
}

.node-button {
    background-color: #118AB2;
}

.node-button:hover {
    background-color: #00BFFF;
}

.node-button img {
    width: 25%;
}

.bash-button {
    background-color: rgb(103, 103, 103);
}

.bash-button:hover {
    background-color: #A9A9A9;
}

.bash-button img {
    width: 25%;
}

.git-button {
    background-color: #FFB3BA;
}

.git-button:hover {
    background-color: #ff735b;
}

.ssh-button {
    background-color: #FFB3BA;
}

.ssh-button:hover {
    background-color: #ff7e66;
}

.ssh-button img {
    width: 25%;
}

.ubuntu-button {
    background-color: #A0E7E5;
}

.ubuntu-button:hover {
    background-color: #40E0D0;
}

.vps-button {
    background-color: #118AB2;
}

.vps-button:hover {
    background-color: #00BFFF;
}

.vps-button img {
    width: 25%;
}

.github-button {
    background-color: darkgrey;
}

.github-button:hover {
    background-color: grey;
}

.mongodb-button {
    background-color: limegreen;
}

.mongodb-button:hover {
    background-color: greenyellow;
}

.a11y-button {
    background-color: #FFB3BA;
}

.a11y-button:hover {
    background-color: #ff7e66;
}

