:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);

    font-size: 10px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
}

/* BODY */
body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: var(--border);
    z-index: 1000;
}

.header section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header img {
    height: 6rem;
}

/* NAVBAR */
.navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
}

/* reviews */
.title {
    text-align: center;
    font-size: 4rem;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: 9rem;
}

.title span {
    color: #fff;
    text-transform: uppercase;
}

.reviews .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
    padding: 4rem;
    margin-top: 4rem;
}

.reviews .box-container .box {
    padding: 3rem 2rem;
    background: var(--black);
    border-radius: 0.5rem;
    border: var(--border);
    text-align: center;
    cursor: pointer;
}

.reviews .box-container .box p {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    font-weight: lighter;
}

.reviews .box-container .box .user {
    height: 7rem;
    border-radius: 50%;
    width: 7rem;
}