@import "./navbar.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap');

body {
    background-color: rgba(77, 1, 1, 0.8) !important;
    font-family: "Roboto";
}

.container {
    margin-top: 5%;
}

h1 {
    color: white;
    font-family: "Montserrat";
    font-size: 30px !important;
    font-weight: bold !important;
    text-align: center;
    text-shadow: 1px 2px rgba(0,0,0,0.45);
    text-transform: uppercase;
}

.service-card {
    background-color: rgba( 255,255,255, 0.8);
    box-shadow: 0px 10px 5px -3px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5% 0 0 5%;
    padding-top: 5%;
    width: 90% !important;
}

.service-card p {
    text-align: justify;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service h5 {
    font-size: 14px !important;
    font-weight: bold !important;
    margin-top: 2% !important;
    text-transform: uppercase;
}

img {
    color: white !important;
}

span {
    border-bottom: 3px solid white;
    display: block;
    margin-bottom: 3%;
    width: 100%;
}

br {
    display: none;
}


@media (min-width:425px) and (max-width: 767.98px)  {
    .service-card {
        margin: 5% 0 0 0;
    }

    .row {
        justify-content: center;
    }

    h1 {
        font-size: 50px !important;
        font-weight: bold !important;
    }
}

@media (min-width:768px) {
    .service-card {
        background-color: rgba(0,0,0,0);
        box-shadow: 0px 10px 5px -3px rgba(0,0,0,0);
        margin: 1% 0 0 0;
        padding-bottom: 2%;
        padding-top: 0%;
        width: 300px !important;
    }

    .service {
        align-items: center;
        background-color: rgba( 255,255,255, 0.8);
        box-shadow: 0px 10px 5px -3px rgba(0,0,0,0.25);
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 5% 3% 0 3%;
        width: 90%;
    }

    h1 {
        font-size: 60px !important;
        font-weight: bold !important;
    }

    br {
        display: initial;
    }
}



