﻿body {
    background-color: #010604;
    color: #00d4ff;
    overflow: hidden;
    background-image: url('/Content/Assets/Backgrounds/background.png');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.btn {
    background-color: #161919;
    color: #DBB665;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    font-family: Courier New;
}

.pulse {
    font-size: 1.8rem;
    display: inline-block;
    padding: 1rem 4.3rem;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #A5A5A9;
    transition: transform 0.2s ease;
}

.pulse:hover {
    transform: scale(1.05);
    background-color: #7A918D;
    color: white;
    border: 1px solid #A5A5A9;
}

input {
    display: none;
}

label {
    transition: transform 0.2s ease;
}

label:hover {
    transform: scale(0.50);
}

@media (max-width: 768px) {
    body {
        background-size: 100%;
        background-position-y: 200px;
    }

    .pulse {
        font-size: 13px;
        top: -60px;
    }
}
