@charset "UTF-8";

.box .title {
    top: 0;
    box-sizing: border-box;
    padding: 1%;
    color: #5e5e5e;
    position: relative;

    height:15%;
    font-size:7rem;
    letter-spacing: 2rem;
}

.box .contents {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    padding: 1% 5% ;

    height: 85%;
}

@media screen and (max-width : 750px){
.box .title {
    font-size: 4rem;
    height: 10%;
    letter-spacing: 1rem;
}

.box .contents {
    height: 90%;
}

}

body {
    font-size: 11px;
    height:100%;
    position: relative;
}

.box {
    color: #5e5e5e;
    padding: 10px;
    display: flex;
    flex-direction: column;
    width:100%;
}
