/*!
 * Roblox Landing Page
 * Custom Stylesheet for this Landing Page
 * Landing Page (https://cpacodex.com)
 * Copyright 2014-2019 CPACodex Web Services
 * Licensed under MIT 
 */

 /* Global Changes */

@import url('https://fonts.googleapis.com/css2?family=Roboto&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&amp;display=swap');

@font-face {
    font-family: 'roblox_2017regular';
    src: url('../fonts/roblox-webfont.woff2') format('woff2'),
         url('../fonts/roblox-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body,html  {
    font-family: 'Raleway', sans-serif !important;
	overflow-x: hidden!important;
}

.font-weightbold
{
    font-weight: 900;
}
.roblox-font {
    font-family: 'roblox_2017regular';
}

.roblox-font-p {
    font-family: 'Raleway', sans-serif;
}

.input {
    align-items: flex-start;
    display: flex;
    flex: 1 1 auto;
    font-size: 16px;
    letter-spacing: normal;
    max-width: 100%;
    text-align: left;
    border-radius: 4px;
    border: 1px solid #000;
    width: 100%;
    padding: 15px;
}

.blink {
  animation: blinker 1s linear infinite;
}

.footer-p {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 9px;
    font-weight: bold;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}