@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px #0431fa; }
  50% { box-shadow: 0 0 20px #0026ff; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

:root {
    --white: rgb(255, 255, 255);
    --link-color: rgb(0, 195, 255);
    --dark-bg: rgba(34, 34, 34, 0.85);
}

html {
    height: -webkit-fill-available; 
    background: var(--dark-bg);
    overscroll-behavior: none;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: auto;
    
    overflow-y: visible; 
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
    text-align: center;
    font-family: "Rubik", sans-serif;
    color: var(--white);

    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px) repeat,
        linear-gradient(-45deg, #4f7eff, #32a5f1, #0089fa, #8bfbff);
    background-size: 40px 40px, 400% 400%;
    background-attachment: scroll; 
    animation: gradientShift 50s ease infinite;

    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    color: var(--white);
    margin: 0;
}

p {
    font-weight: 100;
}

.bold-text {
    font-weight: 600;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.button {
    background-color: rgba(44, 44, 44, 0.85);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 45px;
    margin: 5px;
    transition: transform 0.2s;
}

.button:hover {
    transform: scale(1.05);
    animation: glow 2s infinite alternate;
}