*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #d0cbf3;
    letter-spacing: 1px;
}
#main{
    position: relative;
    background-color: #1a1832;
    margin-top: 200px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
}
.close{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    font-size: 18px;
    background-color: transparent;
    color: hsl(234, 39%, 85%);
    border: 0;
    padding: 5px 10px;
}
.close:hover{
    background-color: red;
}
#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    color: white;
    margin-top: 50px;
    margin-bottom: 20px;
}
.title{
    font-size: 20px;
}
.number{
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    color: hsl(234, 39%, 85%);
    padding-bottom: 10px;
}
.rating{
    display: flex;
    color: hsl(234, 39%, 85%);
    background-color: transparent;
    border: 1px hsl(234, 39%, 85%);
    font-size: 15px;
}
.click{
    background-color: #2D2D3A;
    border: none;
    border-radius: 5px;
    color: hsl(234, 39%, 85%);
    cursor: pointer;
    font-size: 15px;
    padding: 10px 12px;
    transition: ease-in-out .3s;
}
.click:hover{
    border: 1px solid hsl(234, 39%, 85%);

}
#bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: hsl(234, 39%, 85%);
    font-size: 12px;
    padding: 0 20px;
}
#footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: hsl(234, 39%, 85%);
    font-size: 15px;
    padding: 20px;
}
.Exit{
    background-color: #1a1832;
    color: hsl(234, 39%, 85%);
    border: 1px solid #8B5CF6;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;

}
.Submit{
    background-color: #8B5CF6;
    color: hsl(234, 39%, 85%);
    border: 1px solid #8B5CF6;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
}