@font-face {
    font-family: Spleen;
    src: url(./fonts/spleen.otf);
}

body,
html {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Spleen;
    margin: 0;
    z-index: 100;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

.logo {
    max-width: 400px;
    max-height: 400px;
}

.site-logo {
    width: 40px;
    height: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px;
}

.social-link:hover {
    background-color: rgba(44, 144, 126, 0.3);
    border-radius: 16px;
}

.flex-area {
    display: flex;
    flex-direction: column;
    margin: auto
}

.about-me {
    min-width: 100px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 8px;
}

p {
    font-size: 24px;
    margin: 0;
}

a,
a:visited {
    color: inherit;
    text-decoration: none;
}

.particles-container {
    /* position: relative; */
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    background-color: #212a46;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}