@font-face {
    font-family: 'Neoteric';
    src: url('/theme/fonts/neoteric.ttf');
}

@font-face {
    font-family: 'Neoteric';
    src: url('/theme/fonts/neoteric-bold.ttf');
    font-weight: bold;
}

h1 {
    font-family: 'Neoteric';
    font-size: 2em;
    color: #221a34;
    margin-bottom: 20px;

}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

body {     
    /* background: #221a34; */
    background: linear-gradient(90deg, #1b152b 35%, #4c3b74 100%);
    font-family: 'Neoteric';
    padding: 15px;
}

.cyber-card {
    background: whitesmoke;
    margin: 25vh auto;
    max-width: 600px;
    padding: 20px;
    color: #221a34;
    border-radius: 5px;
    animation: 1s ease-out 0s 1 pulse;
    font-size: 1.1em;
    position: relative;
}

.logo {
    height: 80px;
    margin-bottom: 10px;
    max-width: 100%;
}

.at {
    font-family: Arial, sans-serif;
    font-size: 0.8em;
}

.social-container {
    position: absolute;
    top: 0; 
    right: 15px; 
}

.social-button {
    display: inline-block;
    padding: 8px 8px 4px; 
    background-color: #221a34;
    border-radius: 5px; 
    margin-top: 15px;
}

.social-button:hover {
    background-color: #4c3b74;
}

a {
    color: #221a34;
}

p:not(:first-child) {
    margin-top: 20px;
}

@media screen and (min-width: 540px) { 
    .logo { max-width: 300px; }
}

@keyframes pulse {
    from {
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      transform: scale3d(1, 1, 1);
    }
 }