#noticeModal{
    display: none;
    flex-direction: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: rgba(0, 0, 0, 0.475);
    z-index: 9999999;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

#noticeModal div{
    height: 95vh;
    display: flex;
    border: white solid 5px;
    border-radius: 1px;
    position: relative;
}

#noticeModal div img{
    object-fit: cover;
}

#noticeCloseBtn{
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-weight: 900;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
}

#noticeCloseBtn:hover{
    background: #807f7f66;
    border-radius: 2px;
    transition: all ease-in-out 300ms;
    color: rgb(233, 62, 40);
}

@media (max-width:900px) {
    #noticeModal div{
        height: 75vh;
    }
}