﻿@font-face 
{
    font-family: 'lap_view_bold';
    src: url(../fonts/lap_view_bold.woff2) format('woff2');
}

@font-face 
{
    font-family: 'lap_view_regular';
    src: url(../fonts/lap_view_regular.woff2) format('woff2');
}

* { margin: 0px; padding: 0px; box-sizing: border-box; overflow: hidden; user-select: none; }

.contact
{
    display: flex;
    justify-content: flex-end;

    position: absolute;
    z-index: 2;
    top: 0px;
    width: 100%;

    font-family: lap_view_regular;
    font-size: 14px;

    color: white;

    padding-top: 10px;
    padding-right: 10px;

    cursor: pointer;
}

.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;
}

.state
{
    text-align: center;

    font-family: lap_view_regular;
    font-size: 22px;

    margin-left: 96px;
    margin-top: -10px;
    margin-bottom: 10vh;

    color: #595959;
}

/* 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;
  }
  .state 
  {
    font-size: 15px;
    margin-left: 76px;
    margin-top: -5px;
  }
}