@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

:root {
    --bg-color: rgb(1, 1, 1);
    --line-color: rgb(8, 8, 8);
}

a {
    text-decoration: none;
}

body {
    display: grid;
    grid-template-columns: auto min(100%, 720px) auto;
    
    color: white;
    background: linear-gradient(transparent calc(100% - 1px), var(--line-color) 1px),
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line-color) 1px);
    background-size: 200px 100px;
    background-position: -40px -30px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.bg-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -999;
    height: max(55dvw, 100dvh);
    opacity: 0.05;
}

.container {
    grid-column-start: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100dvh;
}

.info {
    position: relative;
    width: min(100%, 100dvw);

    display: grid;
    
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info p {
    font-family: 'Raleway';
}

.contact img {
    width: 30px;
    margin: 10px;

    filter: grayscale(1);
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.contact img:hover {
    opacity: 0.8;
}

.discord-icon {
    filter: brightness(10);
}

.contact a:last-child img {
    border-radius: 20px;
}

.tag {
    font-weight: 800;
}