.main {
    background-color: #eee;
    width: 100%;

    display: flex;
    
    align-items: center;
    justify-content: center;
}

.container {
    margin: 40px 0;
    width: 950px;
    display: flex;
    flex-wrap: wrap;
    
    align-items: center;
    justify-content: flex-start;
    gap: 80px 25px;
}

.box {
    height: 420px;
    width: 300px;
    padding: 20px;

    background-color: #fff;

    border: 2px solid #e5e5e5;
    border-radius: 5px;

    box-sizing: border-box;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.box > a {
    text-decoration: none;
}

.box > .title {
    margin-bottom: 20px;
}

.box > .description {
    height: 40px;
    text-align: center;
    margin-bottom: 15px;
    align-content: center;
}

.button {
    width: 180px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    box-sizing: border-box;

    color: #fff;
}

.back {
    border-radius: 100%;
    height: 40px;
    width: 40px;
    background-color: #ddd;
    color: #000;
    text-align: center;
    align-content: center;
    text-decoration: none;
    font-size: 22px;
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid #000;
    font-weight: bolder;
}