@charset "UTF-8";

body {
    background-color: #efefef;
}

#container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 15px;
    padding: 100px;
    width: 800px;
    height: 800px;
    margin: 100px auto 25px auto;
    background-color: #fff;
    box-sizing: border-box;
}

.a {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.b {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
}

.c {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}



#container > * {
    background-color: dodgerblue;
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    line-height: 12px;
    color: #333;
}

#info {
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    color: #333;
    width: 800px;
    margin: 0 auto 100px auto;
}

.right-align {
    text-align: right;
}

.bottom-align {
    display: flex;
    align-items: flex-end;
}

.flex-end {
    justify-content: flex-end;
}

/*
#container * {
    background-color: #fff;
}


.tracking {
    letter-spacing: -0.5px;
}

.leading {
    line-height: 20px;
}
*/
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
}

.two-col {
    background-color: deeppink;
}



.two-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 8fr 4fr;
}

.two-row {
    background-color: plum;
}

.three-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 100px;

}

.three-row {
    background-color: darkseagreen;
}

.uppercase {
    text-transform: uppercase;
}

#title1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    height: 80px;
    color: #008f46;


}

#title2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    font-size: 20px;
    height: 40px;
    color: #70421d;

}


#para {
    color: #70421d;
}

#para2 {
    font-size: 14px;
    color: #70421d;
}

#para3 {
    text-align: center;
    color: #70421d;
}

#lightcolor {
    font-size: 10px;
    color: #af5800;
}

#container * {
    background-color: #fff;
}
