@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --wht-clr: #f8f8f8;
    --white-clr-light: #f8f8f8c8;
    --blk-clr: #080808;
    --accent-clr: #ff3c1e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar{width:0;}

::selection {
    background: var(--accent-clr);
    color: var(--blk-clr);
}

body {
    margin: 0;
    height: 100vh;
    font-family: "Space Mono", monospace;
    background: #000;
    color: var(--wht-clr);
    overflow-x: hidden;
    overflow-y: auto;
}

@font-face {
    font-family: 'Blisey';
    src: url('../assets/fonts/blisey.regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Blisey', sans-serif;
    font-weight: 700;
}

a {
    color: var(--wht-clr);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

a:hover {
    color: var(--accent-clr);
    letter-spacing: 1px;
    text-decoration: none;
}

a:hover svg {
    fill: var(--wht-clr);
    transform: scale(1.1);
}

ul,
ol {
    list-style: none;
    padding-left: 0;
}

p {
    line-height: 1.6;
    color: var(--wht-clr-light);
    font-weight: 300;
    font-size: 0.8rem;
}

svg {
    transition: all 0.3s ease;
}

header {
    position: fixed;
    top: 0;
    width: 100vw;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .24rem 1.2rem;
    z-index: 6;
}

.logo {
    pointer-events: none;
    cursor: pointer;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    bottom: 0;
    text-align: center;
    padding: .5rem;
    z-index: 6;
}

section.sticky{
    position:fixed;
    width:100vw;
    height:100vh;
    top:0;
    left:0;
    background: transparent;
}

section.website-content{
    position:absolute;
    width:100%;
    height: 200vh;
    top:200vh;
    background: var(--accent-clr);
    padding: 6em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.content{
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index:2;
}

.content h1{
    font-size: 6rem;
}

.btn-area{
    width:50%;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-evenly;
}

button.agree, button.disagree{
    font-family: "Space Mono", monospace;
    font-size: 1rem;
    background: transparent;
    color: var(--wht-clr);
    border: 1px solid var(--blk-clr);
    padding: 4em;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    aspect-ratio: 1;
}

button.agree:hover, button.disagree:hover{
    background: var(--wht-clr);
    color: var(--blk-clr);
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  z-index: -1;
}