@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --primary-color: #7CCDEF;
    --primary-color-hover: #a0f1ff;
    --primary-dark: #18A6DF;
    --primary-dark-hover: #046d97;
    --accent-color: #ffab73;
    --accent-dark: #f47e2d;
    --text-color: #ffffff;
    --text-light: #666666;
    --light-gray: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --white: #ffffff;
    --shadow-sm: 0px 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0px 1px 6px rgba(0, 0, 0, 0.3);
    --radius: 20px;
    --transition: 0.4s ease-in-out;
    --font-afacad: "Afacad", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-image: linear-gradient(#ffb56b, #fb7d1d, #fb7d1d);
    line-height: 1.6;
    font-size: 16px;
}

main {
    height: 100vh;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
}

p {
    text-align: center;
    font-size: clamp(12px, 16px, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    width: 100%;
    border: 1px solid var(--gray-200);
}

.logo {
    position: relative;
    max-width: 300px;
    padding: 200px 2rem 1.5rem;
    border-radius: 0 0 20px 20px;
    background-color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    animation: text-in 1s;
}

.text {
    animation: opacity-in 2s;
}

.btn {
    font-family: "Quicksand", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
    white-space: nowrap;
    animation: opacity-in 2s;
}

.btn i {
    font-size: 2rem;
}

.btn-primary {
    background-color: #fff;
    color: #fb7d1d;
    font-weight: 700;
}

.btn-primary:hover {
    transform: scale(1.1);
}

.btn-default {
    cursor: default;
}

@keyframes text-in {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0px);
    }
}

@keyframes opacity-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}