* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --foreground-rgb: 0, 0, 0;
    --background-start-rgb: 214, 219, 220;
    --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
    :root {
        --foreground-rgb: 255, 255, 255;
        --background-start-rgb: 0, 0, 0;
        --background-end-rgb: 0, 0, 0;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    color: rgb(var(--foreground-rgb));
    background: linear-gradient(to bottom,
            transparent,
            rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));


    font-family: 'Nunito', sans-serif;
    font-style: normal;
}

/* App.css */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: white;
}

.App {
    text-align: center;
}

.hero {
    height: 100vh;
    background: url('../images/Rectangle-3-1.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.content {
    padding: 20px;
    background-color: #18191b;
}

button {
    background-color: #4a4a4a;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #303030;
}

.button-primary {
    background-color: #6239b5;
    color: #fff;
    border-radius: 8px;
    transition: background-color .3s, color .3s;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.button-primary:hover {
    background-color: #ffffff;
    color: #18191b;
}

.button-secondary {
    background-color: #6239b5;
    color: #fff;
    border-radius: 5px;
    transition: background-color .3s;
    text-decoration: none;
    font-size: 17px;
    line-height: 30px;
    text-align: center;
}

.button-secondary:hover {
    background-color: #9d6cff;
}