@font-face {
    font-family: 'amithenregular';
    src: url('./fonts/amithen-webfont.eot');
    src: url('./fonts/amithen-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/amithen-webfont.woff2') format('woff2'),
         url('./fonts/amithen-webfont.woff') format('woff'),
         url('./fonts/amithen-webfont.ttf') format('truetype'),
         url('./fonts/amithen-webfont.svg#amithenregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansa_prosemibold';
    src: url('./fonts/sansapro-semibold-webfont.eot');
    src: url('./fonts/sansapro-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/sansapro-semibold-webfont.woff2') format('woff2'),
         url('./fonts/sansapro-semibold-webfont.woff') format('woff'),
         url('./fonts/sansapro-semibold-webfont.ttf') format('truetype'),
         url('./fonts/sansapro-semibold-webfont.svg#sansa_prosemibold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'sansa_pronormal';
    src: url('./fonts/sansapro-normal-webfont.eot');
    src: url('./fonts/sansapro-normal-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/sansapro-normal-webfont.woff2') format('woff2'),
         url('./fonts/sansapro-normal-webfont.woff') format('woff'),
         url('./fonts/sansapro-normal-webfont.ttf') format('truetype'),
         url('./fonts/sansapro-normal-webfont.svg#sansa_pronormal') format('svg');
    font-weight: normal;
    font-style: normal;

}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.main-content{
    width: 1080px;
    height: 1920px;
    overflow: hidden;

    background: url(../assets/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.title-content{
    width: 763px;
    height: 351px;
    margin: 95px auto 0;

    background: url(../assets/title.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.month-container{
    margin: -24px auto 0;
}

h1.month-title{
    color: #19535E;
    text-align: center;
    font-family: 'amithenregular';
    font-size: 109px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.underline-title{
    width: 334px;
    height: 46px;
    margin: -35px auto 0;
    background: url(../assets/underline.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.day-container {
    width: 100%;
    height: 945px;
    overflow: hidden;
    padding-top: 18px;
    padding-left: 64px;
}

.footer{
    margin: -5px auto 0;
    width: 480px;
    height: 396px;
    background: url(../assets/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.person{
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.birthday{
    color: #FFF;
    width: 42px;
    height: 42px;
    background: #19535E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 50%;
    font-family: 'sansa_prosemibold';
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

p.birth-name{
    color: #19535E;
    font-family: 'sansa_prosemibold';
    font-size: 33px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

p.birth-position{
    color: #19535E;
    font-family: 'sansa_pronormal';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 450px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.invisible{
    display: none;
}