* {
        margin: 0;
        padding: 0;
        font-family: "IBM Plex Sans", sans-serif;
}

body {
        width: 100vw;
        height: 100vh;
        color: #f2f2f2;
        background-color: #161616;
}

.container {
        width: 100%;
        height: 100%;
        display: grid;
        grid-auto-rows: minmax(100px, auto);
        grid-template-columns: repeat(3, 1fr);
}

.container .center {
        grid-row: 2;
        grid-column: 2;
}

.container .center .title {
        font-size: 72px;
        font-weight: 500;
        line-height: 94px;
}

.container .center .phonetic {
        display: 47px;
        font-size: 36px;
        font-weight: 500;
        line-height: 47px;
}

.container .center p {
        width: 750px;
        height: 250px;
        font-size: 18px;
        line-height: 23px;
        padding-top: 30px;
        font-weight: normal;
        text-align: justify;
}

.container .center .btn {
        color: #000;
        width: 150px;
        height: 50px;
        display: flex;
        font-size: 18px;
        line-height: 23px;
        border-radius: 5px;
        background: #f2f2f2;
        align-items: center;
        justify-content: center;
}

.legal, .nav {
        grid-row: 3;
        display: flex;
        margin: 20px 30px;
}

.legal {
        grid-column: 1 / 3;
        align-items: flex-end;
}

.nav {
        grid-column: 2 / 4;
        align-items: flex-end;
        justify-content: flex-end;
}

