﻿@font-face {
    font-family: 'Correct XXX Condensed Black';
    src: url('./fonts/Correct-XXXCondensedBlack.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('./fonts/FKGroteskNeue-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.main {
    display: flex;
    flex-direction: row;
    border-radius: 0.7rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background-color: #B8FCBF;
    color: #3364FA;
    width: 300px;
}

.chair-img {
    height: 400px;
    width: 400px;
    object-fit:scale-down;
}

h1 {
    padding-bottom: 12px;
    font-family: 'Correct XXX Condensed Black', sans-serif;
    font-size: 2rem;
}

p {
    white-space: nowrap;
    color: #000;
    font-family: 'FK Grotesk Neue', sans-serif;
}

.nav-away {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #3364FA;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 2rem;
    font-family: 'FK Grotesk Neue', sans-serif;
}

    .nav-away:hover {
        background-color: #2950c8;
    }
