@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: url(img/background.png);
    background-size: cover;
    background-position: center;
}
.logo{
    width: 500px;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    font-size: xx-large;
    font-weight: 200;
}
.navbar{
    width: 85%;
    height: 15%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
button{
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: none;
    border-radius: 20px;
    outline: none;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.4s;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
}
button:hover{
    background-color: rgba(0, 0, 255, 0.05);
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) all 0.4s;
}
.container{
    margin-left: 50px;
}
.container .header h1{
    color: black;
    margin-bottom: 25px;
    font-size: 43px;
    font-weight: 100;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container .text p{
    color: #000;
    margin-bottom: 0px;
    font-size: 23px;
    font-weight: 100;
}
.container .text .pn{
    font-size: 12px;
    margin-bottom: 50px;
}
.links{
    list-style: none;
    width: 100%;
    height: 50px;
    cursor: default;
    text-align: center;
}
.links button{
    width: 100px;
    height: 50px;
    font-size: 13px;
    border-radius: 150px;
}
.links li a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}
.services{
    height: 100vh;
    /* margin-top: 120px; */
    padding: 20px;
    width: 100%;
    background-image: url(https://getwallpapers.com/wallpaper/full/0/2/2/639458.jpg);
}
.card {
    height: auto;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}
.card .head h1{
    color: #b300ff;
    text-align: center;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
}
.card .text p{
    color: #000;
    margin-top: 20px;
    text-align: center;
}