* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0ebeb;
}

.container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}   

.container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}   

.container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    overflow: hidden;
    height : 95px;
    width: 600px;
    text-align: center;
    transition: all 0.5s;
}

.toggle.active {
    height : 300px
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1rem;
}   