html,
body {
  font-size: 62.5%;
}

*, *:before, *:after {
    box-sizing: border-box;
  }

html {
    height: 100%;
    box-sizing: border-box;
}

body {
    /* position: relative; */
    height: 100%;
    width: 100%;
    background: url("imgs/pexels-karolina-grabowska-4041237.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
}


.flex {
    display: flex;
}
.column {
    flex-direction: column;
}

.center {
    justify-content: center;
    align-items: center;
}

.end {
    justify-content: end;
    align-items: flex-end;
    width:75%;
    font-size: 15px;
    font-family: "Indie Flower", cursive;
}

#box1 {
    height: 100%;
    visibility: visible;
    width: 20%;
    margin:0 auto;
}

#title {
    font-family: "Meow Script";
    font-size: 500%;
    font-weight: 600;
}

#box2 {
    height: 100%;
    visibility: hidden;
}

#sign {
    visibility: hidden;
}



#title {
    height:50%;
}

#sub {
    height: 50%;
}

#content {
    text-indent: 20px;
    width: 100%;
    margin:0 40%;
    font-size: 300%;
    display: none;
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}


@media screen and (max-width: 1242px) {
    
    #box1 {
        width: 25%;
        font-size: 95%;
    }
  }

@media screen and (max-width: 767px) {
    
    #box1 {
        width: 50%;
        font-size: 100%;
    }
  }

  @media screen and (max-width: 440px) {
    
    #box1 {
        width: 55%;
        font-size: 85%;
        margin-top: 20px;
    }

    #title{
        font-size: 450%;
    }
  }