.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.content h1{
    font-size: 70px;
    margin-top: 80px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
    font-size: 40px;
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid black;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;

}

button:hover {
    border: 2px solid black;
    background-color: black;
    color: #fff;
}

.row {
    padding-top: 30px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
    padding-bottom: 50px;
}

.box {
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.box i {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #3e96f4;
}

.box h3 {
    font-size: 25px;
    padding-top: 20px;
    text-align: center;
}

.box p {
    padding-top: 20px;
    line-height: 25px;
    text-align: center;
}

