* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
body {
    background: linear-gradient(to bottom, rgb(230, 40, 154), #f3b0e9);
    opacity: 0.8;
    height: 100vh;
    background-size: cover; 
    background-position:center;
    background-repeat: no-repeat; 
    margin: 0; 
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    color: white; 
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); 
}

.button{
    background-color:blue;
    border: none;
    border-radius: 15px;
    position: absolute;
    bottom: 150px;
    left:50%;
    transform: translateX(-50%);
    color: whitesmoke;
    padding:15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(4, 124, 137, 0.2); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.button:hover {
    transform: translateX(-50%) scale(1.05); 
    box-shadow: 0px 6px 12px rgba(81, 70, 224, 0.3);
    background-color: rgb(86, 91, 222);
}
.quote-box{
    background-color: #c93cd3;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 30px; 
    width: 60%; 
    margin: 50px auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center; 
}

h1 {
    font-size: 2em; 
    color: rgb(15, 1, 1);
    line-height: 1.4; 
    font-family: Georgia, 'Times New Roman', Times, serif;
}
