﻿@font-face 
{
    font-family: 'lap_view_bold';
    src: url(../fonts/lap_view_bold.woff2) format('woff2');
}

@font-face 
{
    font-family: 'noto_sans';
    src: url(../fonts/noto_sans_regular.woff2) format('woff2');
}

* { margin: 0px; padding: 0px; box-sizing: border-box; overflow: hidden; user-select: none; }

.contact
{
    width: min-content;

    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;

    color: white;
    background-color: rgb(24, 24, 24);

    font-family: noto_sans;
    font-weight: 300;
    font-size: 13px;

    border-width: 1px;
    border-style: solid;
    border-color: rgb(57, 57, 57);

    white-space: nowrap;

    padding: 4px;
    padding-top: 3px;
    padding-bottom: 2px;

    border-radius: 3px;

    cursor: pointer;
}

.contact:hover
{
    background-color: #232323;
}

.container-center-screen 
{
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 0px;
    left: 0px;

    width: 100dvw;
    min-height: 100vh;
    z-index: 1;

    justify-content: center;
    text-align: center;
}

.name
{
    font-family: lap_view_bold;
    font-size: 80px;

    color: white;
}

/* Required particles.js style. */
#particles-js
{
  height: 100dvh;
  width: 100dvw;
  background-color: #111111;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* Styles for screens smaller than 600px (phones) */
@media screen and (max-width: 600px) 
{
  .name 
  {
    font-size: 52px;
  }
}