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

:root {
        --color-primary: #333;
        --color-on-primary: white;
        --color-background: #000;
        --color-on-background: #f1f5f9;
        --color-border: #475569;
        --color-hover: rgba(255,255,255,0.1);
        --overlay: rgba(0, 0, 0, 0.4);
        --overlay-2: rgba(255,255,255, 0.2);
        
}

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

body {
        height: 100vh;
        overflow: scroll;
        overflow-x: hidden;
        background-color: var(--color-background);
        color: var(--color-on-background);
        font-family: 'Nunito', sans-serif;
        margin-left: 32px;
        margin-right: 32px;
        background-image: url("../assets/bg2.png");
}

.content {
        margin-left: 32px;
        margin-right: 32px;
                display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
}

.header {
        color: var(--color-on-primary);
        padding: 0 24px;
        height: 60px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-bottom: 32px;
        border-bottom: 2px solid var(--overlay-2);
}

.header a {
        font-size: 20px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        margin: 0px 10px 0 10px;
}

.button {
        font-size: 15px;
        font-weight: bold;
        background-color: #345239;
        border: 1px solid #417862;
        padding: 2px 10px 2px 10px;
        border-radius: 5px;
        margin: 2px;
        cursor: pointer;
        text-decoration: none;
        color: white;
        display: inline-block;
}

.title {
        font-size: 60px;
}




.btn-wrapper {
        display: flex;
        gap: 16px;
        margin: 20px 0;
}

.content h1 {
        font-size: 40px;
}



