body {
    background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,.7)), url("../images/background.jpg");
}

.container {
    margin-top: 70px;
}

.logo {
    width: 50%;
    margin-bottom: 70px;
}

.box {
    /* background-color: #4b61d1; */
    width: 300px;
    height: 400px;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 15px;
    opacity: 0.8;
}


@media screen and (max-width: 450px) {
    .box {
        margin-bottom: 20px;
    }
}


.text-container {
    height: 75px;
    width: 200px;
    background-color: #4b61d1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    border-radius: 15px;
}

.img-fluid {
    border-radius: 50px;
    object-fit: cover;
}

.box:hover {
    opacity: 1;
}

h1 {
    color: white !important;
}

a {
    text-decoration: none;
}