.finish-screen{
    display: none;
    top: 42px;
    left: 0;
    width: 100svw;
    height: (100svh - 42px);
    background-color: #0000002e;
    backdrop-filter: blur(8px) ;
    position: absolute;
    justify-content: center;
    align-items: center;
    z-index: 30;
}
.finish-effective-screen{
    width: 100svw;
    height: calc(100svh - 42px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.finish-modal{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 1);
    width: min(65.429svw, 530px);
    border-radius: min(6.476svw, 5.232svh);
    font-size: min(3svw, 2.424svh);
    padding: min(4.857svw, 3.9245svh);
    border: min(1.0383svw, 0.839svh) solid #264AF4;
    max-height: (100svh - 42px);
}
.finish-title{
    width: 100%;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E9ECFE;
    box-sizing: border-box;
    border: 1px solid #707070;
    border-radius: min(7.125svw, 5.758svh);
}
.finish-discription{
    margin-top: min(2.165svw, 1.832svh);
    font-size: 1.25rem;
    width: 100%;
    max-height: min(59.4048svw, 24svh);
    overflow-y: auto;
}
.finish-image{
    margin-top: min(2.165svw, 1.832svh);
    height: min(27svw, 16svh);
    max-height: min(49.504svw, 20svh);
}
.finish-image>img{
    height: 100%;
}
.finish-button{
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
}
.finish-button>button{
    width: 100%;
    font-size: 2rem;
    padding-top: min(1.25svw, 1.01svh);
    padding-bottom: min(1.25svw, 1.01svh);
    padding-right: min(2.5svw, 2.02svh);
    padding-left: min(2.5svw, 2.02svh);
    border-radius: min(1.295svw, 1.046svh);
    border: 0;
    margin-top: min(2.165svw, 1.832svh);
    font-weight: bold;
    box-shadow: 0 0 5px gray;
    display: flex;
    justify-content: center;
    align-items: baseline;
    cursor: pointer;
}
.finish-button>button:nth-child(1){
    background-color: #264AF4;
    color: white;
}
.finish-button>button:nth-child(2){
    background-color: white;
    color: #264AF4;
    box-sizing: border-box;
    padding-top: min(0.618svw,0.5svh);
    padding-bottom: min(0.618svw,0.5svh);
    border: min(0.309svw,0.25svh) solid #264AF4;
}
button{
    position: relative;
}
@media screen and (max-width: 768px) {
    .finish-title{
        font-size: 1.15rem;
    }
    .finish-discription{
        font-size: 0.75rem;
    }
    .finish-button>button {
        font-size: 1rem;
    }
}