@charset "UTF-8";

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.2;
    background: linear-gradient(#dc6e25, #fff);
    min-height: 100vh;
}

#loading {
    background-color: #fff;
    position: fixed;
    inset: 0;
    place-items: center;
    display: grid;
}

.main-nav {
    display: flex;
    margin-top: 30px;
    list-style: none;
    margin-left: 35%;
    color: #fff;
    cursor: pointer;
}

@media screen and (min-width: 480px) {
    .main-nav
     {
        margin-top: 45px;
        font-size: 25px;
        margin-left: 40%;
    }
}


@media screen and (min-width: 960px) {
    .main-nav
     {
        margin-top: 55px;
        font-size: 25px;
        margin-left: 45%;
    }
}

.main-nav li {
   margin-right: 20px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
}

.main-nav a:hover {
    color:#f8a733;
}

.page-title {
    
    font-size:4rem;
    font-family: 'Philosopher', serif;
    color: #fff;
    text-align: center;
    margin-top: 30%;
    margin-bottom: 20%;
}

@media screen and (min-width: 480px) {
    .page-title
     {
    font-size:6rem;
    }
}

@media screen and (min-width: 960px) {
    .page-title
     {
        margin-top: 10%;
        margin-bottom: 8%;
    }
}

.top-content {
    text-align: center;
}

.start-button {
    font-size: 20px;
    background: orange;
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 5px darkorange;
}

.start-button:active
 {
    position: relative;
    top: 5px;
    box-shadow: none;
}

.start-button:hover {
    background-color: #f8a733;
}

@media screen and (min-width: 480px) {
    .start-button
     {
    font-size: 40px;
    padding: 45px;
    border-radius: 20px;
    }
}

.big-bg {
    background-size: cover;
    background-position: center top;
}

footer {
    padding: 100px;
}

.copy {
    text-align: center;
    font-size: 1.0rem;
}

@media screen and (min-width: 48em){
  .copy {
    font-size: 2.0rem;
  }
}
