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

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #0f172a;
    align-items: center;
    width: 100%
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background-color: #91ee91;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}

nav a:hover {
    color: #0f172a;
}

form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.question{
    display: flex;
    flex-direction: column;
    align-items: center;
}

input{
    width: 10px;
    height: 10px;
}