@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

*{
    box-sizing: border-box;
    font-size: 18px;
}
body{
    background: #000;
    color: #cfcfcf;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6; /* 1.6 times the font size */
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}
div{
    position: relative;
}
a {
    color: #66b2ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1{
    font-size: 41px;
}
h2{
    font-size: 23px;
}

._display_document{
    left: 50%;
    overflow: auto;
    padding: 7px;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
}
.content{
    left: 50%;
    max-width: 900px;
    transform: translateX(-50%);
    width: 100%;
}
.hero{
    background-image: url(hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 300px;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transform: scaleY(-1);
    width: 100%;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 40%; /* covers 40% of the height */
    pointer-events: none; /* let clicks pass through */
}
.hero::before {
    top: 0;
    background: linear-gradient(to bottom, black, transparent);
}
.hero::after {
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
}
.title{
    color: #fff;
    font-size: 53px;
    font-weight: bolder;
    margin: 0;
    padding: 41px 0 0 11px;
}

.satellite-container{
    height: 300px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: min(900px, 100vw);
    z-index: 2;
}
.satellite-path {
    bottom: 0;
    animation: spin 225s linear 1;
    animation-fill-mode: forwards;
    height: 500%;
    left: 0;
    position: absolute;
    transform-origin: left top;
    width: 50px;
}
.satellite {
    animation: spin-reverse 225s linear 1;
    animation-fill-mode: forwards;
    background-image: url(satellite.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    height: 150px;
    left: -70px;
    position: absolute;
    transform: scale(0.4);
    width: 300px;
}
.top-secret{
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #000;
    border: 1px solid #f00;
    border-radius: 50%;
    color: #f00;
    display: flex;
    font-size: 25px;
    height: 100%;
    justify-content: center;
    left: 50%;
    position:absolute;
    transform: translateX(-40%) scale(0.7);
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-90deg); }
}
@keyframes spin-reverse {
    from { transform: rotate(0deg) scale(0.6); }
    to   { transform: rotate(90deg) scale(0.6); }
}

.headline{
    color: #cfcfcf;
    font-size: 31px;
    margin-top: 40%;
    padding: 0 5px 0 5px;
    text-align: center;
}
.headline-sub{
    color: #cfcfcf;
    font-size: 16px;
    margin-top: 17px;
    padding: 0 23px 0 23px;
    text-align: center;
}
.project{
    padding: 7px;
}
.footer {
    background-color: #000;
    color: #888;
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
}
.founder-pic{
    background-color: #f00;
    background-image: url("will.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-radius: 50%;
    height: 300px;
    margin-bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
}