/* Import a modern clean font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General body styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url("../images/bg.png") no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5; /* light text for readability */
}

html, body {
  height: 100vh;          /* full viewport height */
  margin: 0;
  overflow: hidden;       /* ❌ hides the scroll bar */
}

/* Headings & text */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

header, main {
    width: 100%;
    text-align: center;
}

header {
    background-color: rgba(0,0,0,0.7); /* semi-transparent for style */
    padding: 1em 0;
}

main {
    padding: 2em 0;
    flex: 1;
    background: transparent;
}

footer {
    text-align: center;
    position: inherit;
    bottom: 0;
    color: #ccc;
}

/* Logo */
.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

/* Developer / tagline section */
.dev {
    margin-top: 1rem;
    text-align: center;
    color: #f5f5f5;
}

/* Main container for centering content */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-10vh); /* 👈 nudge up a bit */
}

/* Buttons */
.Btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6em 1.2em;
    margin: 0.5em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #5865f2; /* Discord blue by default */
    color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.15s ease, background 0.15s ease;
}

.Btn:hover {
    transform: translateY(-2px);
    background: #4752c4;
}

.Btn .svgIcon {
    height: 1.4em;
    width: 1.4em;
    flex-shrink: 0;
}

/* Actually paint the shapes */
.Btn .svgIcon path,
.Btn .svgIcon g,
.Btn .svgIcon rect,
.Btn .svgIcon circle,
.Btn .svgIcon polygon {
    fill: currentColor;
    stroke: none;
}