:root
{
    --black : #000000;
    --white : #ffffff;
    --white25 : rgba(255, 255, 255, 0.25);
    --white50 : rgba(255, 255, 255, 0.50);
    --white75 : rgba(255, 255, 255, 0.75);
    --light : #505050;
    --light25 : rgba(50, 50, 50, 0.25);
    --red : #400000;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
}

body{ 
    font-size: 1.6rem;
    letter-spacing: 0.25rem;
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2, h3, h4, h5, h6
{
    color: var(--white);
    font-size: 2rem;
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 1rem;
}

img
{
    width: 100%;
}

a, a:hover, a:visited
{
    color: inherit;
}

.backgroud-image
{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    filter: blur(0.25rem) brightness(12%);
    z-index:-1;
    background: var(--black) url(../img/background-image.jpg) center center/cover;
}

main
{
    background: var(--black);
    box-shadow: 0 0 1rem 0.25rem var(--light25);
    display: grid;
    grid-template-columns: 40rem;
    grid-template-rows: auto;
    grid-auto-rows: auto;
    grid-row-gap: 5rem;
    margin: 0 1rem 0 1rem;
    padding: 2rem;
    border-radius: 1rem;
}

.logo-ph2nx
{
    /* justify-self: center; */
    /* align-self: center; */
}

.social-link
{
    display: flex;
    justify-content: space-evenly;
    color: var(--white);
    min-height: 4rem;
}

a:hover
{
    transition: 0.2s;
    color: var(--red);
}