/* style.css */

:root {
    --bg: #f7f7f7;
    --text: #111111;

    --accent: #4781f3;
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;

    font-family: Helvetica, Arial, sans-serif;
    background: var(--bg);

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Sections */
section {
    position: relative;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap : 1rem;

    padding: 1rem;
    background: var(--bg);
}
section>div {
    flex: 1;
}

h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 0.9;
    color: var(--text);
}

h2 {
    font-size: 4rem;
    font-weight: normal;
    line-height: 1;
    color: var(--text);
}

.hero-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
}

.hero-header>div {
    flex: 1;
    min-width: 350px;

    display:flex;
    align-items: center;
}

.hero-nav {
    position: absolute;
    bottom: 4vw;
    right: 4vw;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.hero-nav a {
    color: var(--accent);

    font-weight: 400;
    font-size: 1rem;
}

.hero-nav a:hover {
    opacity: 0.5;
}