body {
    background-image: url(nostalgic-room-1920x1080-17078.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    height: 500px;
    width: 650px;
    background-color: rgb(37, 4, 70, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 70px rgba(255, 253, 253, 0.5);
    transition: all 0.3s ease;

}

.container:hover {
    transform: translateY(-8px);
    box-shadow: 2px 2px 90px rgba(255, 255, 255, 0.5);
}

.titlecon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.title {
    position: absolute;
    font-size: 45px;
    font-family: 'Arial';
    color: rgb(221, 160, 221);
    margin-top: 40px;
}

.descon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    

}

.desc {
    font-size: 35px;
    text-align: center;
    width: 90%;
    font-family: 'Arial';
    color: rgb(255, 255, 255)
}

.btnCon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    gap: 15px;
}

.btn {
    height: 45px;
    width: 170px;
    border-radius: 50px;
    outline: none;
    border: 0px solid black;
    margin-bottom: 75px;
    font-family: 'Arial';
    background-color: rgb(255, 200, 255);
    font-size: 17px;
    color: rgb(148, 60, 148);
    z-index: 7;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-8px);
    box-shadow: 0px 2px 70px rgba(255, 100, 255, 1);
    background-color: rgb(221, 160, 221);
    cursor: pointer;
}



