@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
@import url('https://unpkg.com/@fortawesome/fontawesome-free@5.15.4/css/all.min.css');
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

* {
    font-family: Roboto;
}

body {
    margin: 0;
    background: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeInAnimation ease-in-out 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fa-magnifying-glass {
    color: white;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10%;
}

.logo {
    width: 150px;
}

.logo-wrapper .text {
    font-size: 75px;
    font-family: "Roboto";
    color: #FFF;
}

.logo-wrapper h1 {
    color: white;
}

footer a,
footer span {
    margin: 0 15px;
    text-decoration: none;
    color: #FFF;
    font-size: 15px;
}

footer a {
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    justify-content: center;
}

.desc {
    display: flex;
    justify-content: center;
}

.desc p {
    width: 560px;
    color: rgba(253, 253, 253, 0.514);
}

form input {
    background: none;
    font-family: inherit;
    padding: 0px 17px;
    height: 48px;
    border: 1px solid rgb(255, 255, 255, .2);
    color: var(--text-color);
    border-radius: 3px;
    outline: none;
    width: 350px;
    margin-top: 5px;
    border-radius: 50px;
    color: #FFF;
}

form input:focus {
    border: 1px solid rgba(253, 253, 253, 0.514);
    border-radius: 6px;
    animation: fadeInAnimation ease-in-out 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
* {
  font-family: Verdana, sans-serif;
}

body {
  background-color: #1F2937;
}

h1, h2, h3, h4, h5, h6 {
  color: #39426b;
  text-align: center;
}

p {
  color: #7521c8;
}

.text-center {
	text-align: center;
}

html, body {
    padding: 0;
    margin: 0;
}

.navbar-main {
    background: #111827;
    width: calc(100% - 20px); /* Subtract padding */
    height: 35px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.navbar-inner {
    height: 100%;
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.navbar-button {
    cursor: pointer;
    color: #39426b; /* Text Color */
    font-size: 10pt;
    border-radius: 8px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
}
.navbar-button:hover {background-color: rgba(255, 255, 255, 0.09);}

iframe {
  display: block;
  margin: 0 auto;
  border: 0;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262b45;
  margin-top: auto;
  width: 100%;
  align-self: center;
  height: 60px;
  text-align: center;
}

.button {
    Background-color: rgb(0, 0, 0);
    color: #39426b;
    cursor: pointer;
    color: #39426b; /* Text Color */
    font-size: 10pt;
    border-radius: 8px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
}
.button:hover {background-color: rgba(255, 255, 255, 0.09);}

@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');


p {
  border-right: solid 3px rgba(0,255,0,.75);
  white-space: nowrap;
  overflow: hidden;    
  font-family: 'Source Code Pro', monospace;  
  font-size: 40px;
  color: #39426b;
  margin: 0 auto;
}

/* Animation */
p {
  animation: animated-text 1.5s steps(29,end) 1s 1 normal both,
             animated-cursor 600ms steps(29,end) infinite;
}

/* text animation */

@keyframes animated-text{
  from{width: 0;}
  to{width: 330px;}
}

/* cursor animation */

@keyframes animated-cursor{
  from{border-right-color: rgba(17, 4, 33,.75);}
  to{border-right-color: transparent;}
}

img {
float: center;
}

.game-img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    transition: 0.2s;
    cursor: pointer;
    width: 200px;
    height: 200px;
  }