@font-face {
    font-family: 'NEXON';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SejonghospitalBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/SejonghospitalBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'NEXON';
    box-sizing: border-box;
}


#view-wrap {
    width: 1920px;
    height: 1080px;
}

#score-board-wrap {
    position: absolute;
    left: 60px;
    top: 80px;
    width: 500px;
    height: 60px;
    border-radius: 24px;
    background-color: black;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    border: 3px solid rgb(247, 158, 255);
}

#score-board-icon {
    position: absolute;
    left:250px;
    top:50px;
    transform: scale(0.7);
    /* visibility: hidden; */
}

#home-score-wrap {
    width:250px;
    height:60px;
    background-color: blue;
    display: flex;
    flex-direction: row;
    color: white;
}

#home-score-wrap > img {
    position: absolute;
    width:130px;
    height:130px;
    left:-50px;
    top:-40px;
    opacity: 0.4;
}

#away-score-wrap {
    width:250px;
    height:60px;
    background-color: red;
    display: flex;
    flex-direction: row;
    color: white;
}

#away-score-wrap > img {
    position: absolute;
    width:130px;
    height:130px;
    left:400px;
    top:-40px;
    opacity: 0.4;
}

#home-score {
    position: absolute;
    font-size:50px;
    font-weight:bolder;
    left:165px;
    height:65px;
    display: flex;
    align-items: center;
    font-family: 'SejonghospitalBold';
}

#home-name {
    position: absolute;
    font-size:32px;
    font-weight: bold;
    text-align: right;
    margin-left:5px;
    width:150px;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#away-score {
    position: absolute;
    font-size:50px;
    font-weight:bolder;
    left:305px;
    height:65px;
    display: flex;
    align-items: center;
    font-family: 'SejonghospitalBold';
}

#away-name {
    position: absolute;
    font-size:32px;
    font-weight: bold;
    text-align: right;
    left:350px;
    width:150px;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: start;
}

#timer-wrap {
    position: absolute;
    left:210px;
    top:137px;
    width:200px;
    height:50px;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
    border: 3px solid rgb(247, 158, 255);
    background-color: rgb(182, 82, 221);
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:28px;
    font-weight: bold;
    color:white;
}

#addtime-wrap {
    position: absolute;
    left:224px;
    top:170px;
    width:175px;
    height:65px;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
    border: 3px solid rgb(247, 158, 255);
    background-color: rgb(157, 0, 219);
    display:flex;
    align-items: flex-end;
    padding-bottom:5px;
    font-size:23px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    color:white;
    z-index: -999;
}

#label-wrap {
    position: absolute;
    left:80px;
    top:40px;
    width:460px;
    height:60px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 3px solid rgb(247, 158, 255);
    /* background-color: rgb(255, 59, 59); */
    background-color: rgb(182, 82, 221);
    display:flex;
    justify-content: center;
    padding-top:8px;
    align-items: flex-start;
    font-size:20px;
    font-weight: bolder;
    color:white;
}

.heart {
    position:absolute;
    height:40px;
}

#heart-home, #heart-away {
    z-index: 999;
}