* {
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 255, 255);
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(252, 70, 107, 1) 100%);
}

.container {
    border: 2px solid rgba(252, 70, 107, 1);
    background-color: rgb(255, 222, 222);
    padding: 20px;
    width: 30%;
    /* height: 200px; */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: clamp(16px, 4vw, 22px);
    color: rgba(252, 70, 107, 1);
    width: 100%;
}

p {
    font-size: clamp(10px, 15px, 20px);
    color: rgb(79, 79, 79);
    text-align: center;
}
.p {
    font-size: 20px;
    color: rgba(252, 70, 107, 1);
    font-weight: 900;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    display: none;
}
.sp{
    font-weight: 400;
    font-size: 15px;
    color: black;
}
input {
    width: 90%;
    height: 30px;
    margin: 20px 0;
    border-radius: 20px;
    border: 1px solid rgba(252, 70, 107, 1);
    padding: 10px;
    background: transparent;
    font-size: 17px;
    color: rgba(252, 70, 107, 1);
}

input:focus {
    background-color: rgba(252, 70, 107, 1);
    outline: rgba(252, 70, 107, 1);
    color: white;
}
audio{
    display: none;
}