@import url('../../Fonts/Poppins/poppins.css');
@import url('../../Fonts/Ubuntu/ubuntu.css');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.navbar.scrolled .logo {
    color: white;
}

.navbar.scrolled .nav-links ul li a {
    color: white;
}

.navbar.navbar.scrolled a .user-icon {
    background-color: white !important;
}

header {
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle at top left, #0099ff, #552eff);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    color: white;
    font-size: 50px;
}

.services {
    background-color: #2C2C2C;
}

#service {
    height: 50vh;
    width: 98vw;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#service #service-title {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 65px;
}

#service #service-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

#service #service-content #service-image {
    width: 180px;
    height: 180px;
    padding: 10px;
    border-radius: 20px;
}

#service #service-content #service-description {
    padding: 20px;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

#service #service-link {
    color: white;
    border-radius: 100px;
    padding: 10px 30px;
    background: #0099ff;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

#service #service-link:hover {
    background: #552eff;
}

.service2-content {
    display: flex;
    flex-direction: row-reverse;
}

@media screen and (max-width: 900px) {
    #service {
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }

    #service #service-content {
        flex-direction: column;
    }

    #service #service-title {
        font-size: 50px;
    }

    #service #service-content #service-description {
        padding: 5px;
    }
}