@import "general.css";

html, body {
  height: 100%;
  margin: 0;
}

body{
    background-color: var(--background-color);
    font-family: bricolage-grotesque;
    color: var(--text-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#background-shader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    display: block;
    opacity: 0.6;
}

#background-shader canvas {
    width: 100%;
    height: 100%;
    display: block;
}

#main-container{
    background: var(--container-color);
    border: 1px solid var(--container-border-color);
    width: 650px;
}

#second-container{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.header-image {
    height: 250px;
    width: 650px;
}

.header-image img {
    height: 250px;
    width: 650px;
}

.about-title {
    font-family: sans-code, monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.about-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 15px 80px 15px 80px;
    cursor: pointer;
}

.about-info li {
    background: var(--button-color);
    border-radius: 5px;
    list-style-type: none;
    margin: 5px;
    padding: 5px 10px 5px 10px;
    font-family: sans-code, monospace;
}

.about-info li:hover {
    color: var(--hover-text-color);
    background-color: var(--hover-button-color);
    font-weight: 550;
}

.about-info li a{
    text-decoration: none;
    color: inherit;
}

.socials-wrapper {
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.socials {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 10px;
}

.socials a {
    background: var(--button-color);
    display: inline-block;
    border-radius: 5px;
    font-size: 0.9rem;
    font-variant: normal;
    height: 0.9rem;
    line-height: 1;
    padding: 5px;
    margin-right: 10px;
    width: 0.9rem;
    display: flex;
    justify-content: center;
    align-content: center;
}

.socials a:hover {
    color: var(--hover-text-color);
    background-color: var(--hover-button-color);
}

.socials a img{
    filter: invert();
    height: 15px;
    width: auto;
}

.socials a:hover img {
    filter: none;
}
