@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
}

body{
    font-size: 16px;
    background-color: rgb(0, 30, 128);
    color: #fff;
}

section{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}

h2{
    text-align: center;
    margin: 100px auto 30px;
    font-weight: 600;
}

h2 span{
    color: red;
}

.area{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
}

textarea{
    width: 500px;
    height: 250px;
    background-color: #ffffffcf;
    border: none;
    outline: none;
    resize: none;
    border-radius: 10px;
    padding: 20px 20px;
}

textarea::placeholder{
    font-size: 14px;
    color: black;
}

.click{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    gap: 3px;
    width: 500px;
    align-self: center;
}

select{
    flex: 1;
    color: #fff;
    background: #0c00f1;
    border: none;
    outline: none;
    height: 32px;
    padding: 0 30px;
    border-radius: 20px;
    appearance: none;
    background: url(./images/down_11606943.png) #0c00f1;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 7px;
    background-size: 18px;
}

button{
    padding: 7px 30px;
    border-radius: 20px;
    background-color: red;
    color: #fff;
    border: none;
    outline: none;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list{
    margin-top: 10px;
    height: max-content;
    width: 80%;
    padding: 20px;
    background-color: #ffffffcf;
    border-radius: 5px;
    outline: none;
    border-radius: none;
    display: none;
    color: #000;
}

.click button .play{
    width: 15px;
    filter: brightness(0) invert(1);
    margin-right: 2px;
}