/* Code: P! */
@charset "UTF-8";

:root {
    /* Color Palette */
    --clr-txt-light: rgb(202, 202, 202);
    --clr-txt-dark: rgb(72, 72, 72);
    --clr-black: rgb(0, 0, 0);
    --clr-darkgrey: rgb(24, 24, 24);
    --clr-bg-light: rgb(140,140,140);
    /* Effects*/
    --trans-nav: 0.5s ease-in-out;
    --trans-menu: 0.2s ease-in-out;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

/* Body--------------------------------------------- */
body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    background-color: var(--clr-darkgrey);
    color: var(--clr-txt-light);
    overflow-y: auto;
    scrollbar-gutter: stable;
}

img {
    width: 128px;
    height: auto;
}

h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 200;
    text-align: justify;
    max-width: 560px;
}

a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgb(202, 202, 202);
}

a:hover {
    color: pink;
}

a:active {
    color: white;
}

a:visited {
    color: gray;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.linkscontainer {
    display: flex;
    flex-direction: row;
    max-width: 560px;
    gap: 2rem;
}

.websitelinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 560px;
    padding: 2rem 0 2rem 0;
}

.links img {
    width: auto;
    height: 56px;
    padding-bottom: 1rem;
}

.button {
  background-color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.button:hover {
  background-color: #0056b3;
}