@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;600;700&display=swap");

:root {
  --hive-bg:       #FFF8DC;
  --hive-stroke:   #E0D879;
  --hex-size:      80px;
  --stroke-width:  2;
}

body {
    margin: 0;
    font-family: "Jost", sans-serif;
    background-color: var(--hive-bg);
}

.wrapper{
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(2px);
    border-radius: 1rem;
    box-shadow: 0 0 8px rgba(0,0,0,.05);
}

h1, h2 {
    margin: .5rem 0 1rem;
}
p{
    margin: .6rem 0 1rem;
    line-height:1.5
}

nav{
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-doc{
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--hive-yellow);
    color: var(--hive-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    white-space: nowrap;
    transition: filter .2s,transform .1s;
}
.btn-doc:hover{
    filter: brightness(1.1);
    transform: translateY(-2px);
}
