@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Playfair+Display&family=Poppins:wght@500&family=Roboto+Condensed:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}
body{
    background-color: #bbc6fa;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.display{
    width: 50%;
    background-color: white;
    border-radius: 0.5rem;
    padding: 50px;
    line-height: 2;
    text-align: center;
    position: relative;
}
#writer{
    position: absolute;
    right: 10px;
}
#blue{
    color: blue;
}
#btn{
    width: 120px;
    padding: 10px 0;
    border-radius: 50px;
    border: 0;
    outline: 0;
    background-color: #3b5998;
    color: #fff;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;

}