main {


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text {
    background-color: #FFF7EB;
    border: 3px solid #CC3A63;
    border-radius: 20px;
    color: #CC3A63;
    height: 53vh;
    width: 400px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text h2 {
    align-self: center;
}

.text a {
    text-decoration-line: underline;
    align-self: center;
    margin-top: 20px;
}

.btn-container {
    display: flex;
    gap: 20px;
}

.btn {
    background-color: #FFF7EB;
    border: 3px solid #CC3A63;
    border-radius: 20px;
    padding: 20px;
    width: 190px;
    height: 16px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    background-color: #CC3A63;
    color: #FFF7EB;
    font-size: large;
}

button {
    background-color: #FFF7EB;
    border: 3px solid #CC3A63;
    border-radius: 20px;
    padding: 10px;
    color: #CC3A63;
}

button:hover {
    background-color: #CC3A63;
    color: #FFF7EB;
    cursor: pointer;
}