* {
    box-sizing: border-box;
    text-align: center;
    color: #9D2933;
    margin: 0;
}

header {
    display: inline-flex;
}

h1 {
    font-size: 30px;
    width: 275px;
}

h2 {
    margin: 20px;
}

#family-crest {
    width: 60px;
}

.address {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    line-height: 0%;
}

#address-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -20px;
}

.japan-address {
    font-family: 'Yuji Hentaigana Akari', cursive;
    margin: 12px;
}

.english-address {
    margin: 12px;
}

#name {
    font-family: 'Yuji Hentaigana Akari', cursive;
    font-family: 'Zen Antique Soft', serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

.kimono-info {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.kimono-pic {
    min-width: 350px;
    max-width: 50%;
    height: auto;
}

.kimono-size {
    min-width: 350px;
    max-width: 50%;
    height: auto;
    border: 1px solid black;
}

footer {
    display: flex;
    justify-content: center;
    position: relative;
    top: 69px;
    margin: 20px;
}

@media only screen and (min-width: 740px) {
    h1 {
        position: relative;
        top: 40px;
        left: -12%;
        font-size: 40px;
        width: 380px;
    }

    #family-crest {
        position: relative;
        height: 150px;
        width: auto;
        top: 20px;
        left: -35%;
    }

    #address-block {
        top: -55px;
        left: -30px;
    }

    main {
        position: relative;
        top: -50px;
    }

    .kimono-info {
        flex-wrap: nowrap;
    }

    .kimono-pic {
        position: relative;
        bottom: 102px;
    }
}
