*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container-home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    width: 50%;
    margin: auto;
    min-height: 250px;
    border: 1px solid #c25;
    margin-top: 50px;
    padding: 20px 35px;
}
.btns-group{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btns-group>button{
    padding: 10px 20px;
    border: none;
    background-color: cadetblue;
    color: #fff;
}
.btns-group>button>a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.btns-group>button:hover{
    cursor: pointer;
}