* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightblue;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 1.1), rgba(201, 255, 255, 0.1)), url(./Pictures/cc09e02c76ae83535ecf0da3d3258ee6.jpeg);
    background-position: center;
    background-size: cover;



}

.container {
    width: 550px;
    height: 450px;

}

.header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-size: 25px;
    font-style: italic;


}

.header h2 {
    font-weight: 100;
    color: rgb(255, 255, 255);
    font-size: 50px;
}

.main-content {
    width: 100%;
    height: 350px;
    padding: 50px 50px;
    background-color: rgb(117, 222, 226);
    border-radius: 15px;
    box-shadow: 0 25px 32px black;
    background-image: linear-gradient(rgba(0, 0, 0, 1.1), rgba(201, 255, 255, 0.1)), url(./Pictures/d4c1b56df5bc6094bcb340ca25bc9c6d.jpeg);
    background-position: center;
    background-size: cover
}

.text-area {
    text-align: center;
    font-size: 20px;
    color: white;
    line-height: 1.5;
}

.main-content .writer {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: red;
    text-align: center;
    margin-top: 20px;
    font-size: 23px;
}

.main-content .button-area {
    display: grid;
    place-items: center;
    margin-top: 30px;
    padding: 10px 10px;

}

.button-area .btn button {
    background-color: blue;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 20px 15px;
    font-size: 18px;
}

.button-area .btn button:active {
    background-image: linear-gradient(rgba(0, 0, 0, 1.1), rgba(248, 248, 248, 0.1)), url(./Pictures/cc09e02c76ae83535ecf0da3d3258ee6.jpeg);
}