/* Load Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('font/Inter18pt-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('font/Inter18pt-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    font-family: 'Inter', Arial, sans-serif;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 500px;
    padding: 20px;
}

.logo img {
    max-width: 200px;
    margin-bottom: 40px;
}

h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    display: block;
    padding: 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.2s ease-out;
}

.button.branded {
    background-color: #01833e;
}

.button span {
    font-size: 13px;
    font-weight: normal;
    display: block;
    color: #ccc;
}

.button:hover {
    background-color: #4e4e4e;
	transform: scale(1.04);
}

/* Responsive Design for Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 13px;
    }

    .button {
        font-size: 15px;
        padding: 12px;
    }

    .button span {
        font-size: 11px;
    }
}