@keyframes fadeFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


body {
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3 {
    padding: 0;
    margin: 0;
}

h1 {
    font-weight: 300;
    font-size: 5vmin;
}

h2 {
    font-weight: 600;
    font-size: 6.2vmin;
    margin-top: 0.7vmin;
}

#logo {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e6e6e6 url("./img/background.jpg") no-repeat center;
    background-size: cover;
}

#background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffffd0;
}

#content {
    user-select: none;
    padding: 6vh 10vw;
    margin-bottom: 1vh;
}

#intro {
    opacity: 0;
    transform: translateX(100px);
    animation: 500ms ease-out 500ms 1 forwards fadeFromRight;
}

#header {
    line-height: 4.8vmin;
}

.wr3 {
    background: black;
    color: white;
    padding: 0 4px;
}

#intro-copy {
    font-size: 1.2vw;
    color: #7d7d7d;
    line-height: 1vmin;
    margin-top: 5vmin;
}

#screenshots {
    overflow: hidden;
    padding-bottom: 5vw;
    padding-left: 2vw;
    margin-left: -2vw;
}

.screenshot {
    color: #7d7d7d;
    display: block;
    width: 300px;
    position: relative;
    border: 2px solid #fff;
    margin-top: 4rem;
    box-shadow: 0 0 30px #44444460;
    text-decoration: none;
}

.screenshot > img {
    width: 300px;
    height: 200px;
}

.summary {
    font-size: 1vw;
    position: absolute;
    left: 330px;
    width: 600px;
}

.summary > h3 {
    white-space: nowrap;
    font-size: 1.5vw;
    min-width: 15vw;
}
