.audio-screen{
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    background-color: #0000002e;
    backdrop-filter: blur(8px) ;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 20;
}
.audio-effective-screen{
    width: 100svw;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.audio-modal{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    width: min(62.5svw, 460px);
    border-radius: min(6.476svw, 5.232svh);
    font-size: min(3.885svw, 3.139svh);
    padding: min(4.857svw, 3.9245svh);
    border: min(1.0383svw, 0.839svh) solid #264AF4;
    max-height: 100svh;
}
.audio-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);
}
.audio-discription{
    margin-top: min(2.165svw, 1.832svh);
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: min(2.165svw, 1.832svh);
    overflow-y: auto;
}
.audio-button{
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.audio-button>button{
    background-color: #264AF4;
    color: white;
    border: 0px;
    width: clamp(81px,15svw,130px);
    border-radius: min(2.59svw, 2.092svh);
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px gray;
}
.audio-button>button>img{
    width: 65%;
    margin-bottom: 10%;
    margin-top: 10%;
}
@media screen and (max-width: 768px) {
    .audio-title{
        font-size: 1.15rem;
    }
    .audio-discription{
        font-size: 0.75rem;
    }
    .audio-button>button{
        font-size: 1rem;
    }
}