@charset "UTF-8";
@import "common.css";

/*
 * Introduction
 */

.introduction {
    display: block;
    background-color: azure;
    min-height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
}

.introduction .poster {
    position: absolute;
    text-align: center;
    font-size: 48px;
    width: 100%;
    top: 30%;
    color: rgb(82, 82, 186);
}

.introduction button {
    position: relative;
    top: 1em;
    font-size: 1em;
    color: white;
    background-color: rgb(82, 82, 186);
    padding: 5px 75px;
    border-style: hidden;
    border-radius: 50px;
}

.introduction button:hover {
    background-color: rgb(55, 55, 123);
}

.introduction .below-hint {
    text-decoration: none;
    position: absolute;
    bottom: 2vh;
    right: 2vw;
    font-size: 32px;
    color: rgb(82, 82, 186);
}

span {
    display: block;
}

/*
 * Content
 */

.content {
    top: 0;
    padding: 0;
    margin: var(--content-gap) 15vw;
    position: relative;
}

.content>* {
    left: 0;
}

.feature {
    margin: 0;
    padding: 0;
    box-shadow: lightpink 1px 0 0, lightpink 0 1px 0, lightpink -1px 0 0, lightpink 0 -1px 0;
    width: 100%;
    height: 400px;
    display: flex;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature .fa {
    padding: 100px 100px;
    font-size: 200px;
    box-shadow: lightpink 1px 0 0, lightpink 0 1px 0, lightpink -1px 0 0, lightpink 0 -1px 0;
}

.feature .word {
    display: inline-block;
    font-size: 24px;
    margin: auto;
    text-align: center;
}
