main {

    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    gap: 10px;
    align-items: center;
}

section {
    height: 53vh;
    width: 100vw;

    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

.card {
    background-color: #FFF7EB;
    height: 100%;
    width: 400px;
    padding: 20px;
    border: 3px solid #CC3A63;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    background-color: #FFF7EB;
    width: 500px;
    height: 15vh;
    border: 3px solid #CC3A63;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.unique {
    height: 90%;
}

.card:hover, .btn:hover {
    background-color: #CC3A63;
    color: #FFF7EB;
    font-size: large;
}

