body{
    margin: 0;
    background-image: url(Images/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Gilroy', sans-serif;
}
@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 600px;
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(102, 0, 185));
    border-radius: 60px;
    margin: 0 auto;
    margin-top: 30px;
}
.logo{
    margin-left: 30px;
}
.logo a{
    text-decoration: none;
    color: aliceblue;
}
.navlinks{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 30px;
}
.navlinks a{
    text-decoration: none;
    color: white;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    text-align: center;
}
.main h1{
    font-size: 96px;
    color: aliceblue;
}
.main h2{
    color: aliceblue;
}
.main p{
    color: aliceblue;
}
.navlinks a.active {
    font-weight: 500;
    background: white;
    color: black;
    width: 80px;
    height: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cards{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cards a{
    text-decoration: none;
    color: black;
}
.card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to left, rgb(221, 135, 255), rgb(254, 253, 255));
    border: 4px;
    border-color: blueviolet;
    border-radius: 50px;
    margin: 50px;
    height: 300px;
    max-width: 1200px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-30px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.card-text{
    margin-left: 50px;
}
.card-text h1{
    font-size: 64px;
}
.card-text p{
    font-weight: 700;
    font-size: 24px;
}
.card-picture{
    margin-right: 30px;
}
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: aliceblue;
}
.about h1{
    font-size: 62px;
}
.about p{
    font-size: 24px;
    font-weight: bold;
    max-width: 800px;
    text-align: center;
}
.tools-table {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-collapse: collapse;
    background: #d9d9d9;
    border-radius: 30px;
    overflow: hidden;
}
.tools-table th {
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    text-align: left;
    border-bottom: 2px solid black;
}
.tools-table td {
    padding: 18px 20px;
    font-size: 18px;
    border-bottom: 1px solid black;
}
.description{
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.description p{
    max-width: 1100px;
}
.section-cards{
    margin: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
.section-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    max-width: 400px;
    height: 500px;
    background: linear-gradient(rgb(136, 75, 136), white);
    transition: transform 0.3s ease;
}
.section-card h2{
    font-size: 28px;
}
.section-card p{
    font-weight: bold;
    margin: 15px;
}
.section-card:hover {
    transform: translateY(-30px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.video{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.video h1{
    color: white;
}
.youtube{
    border-radius: 50px;
    margin-bottom: 30px;
}
.back-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 100px;
    border-radius: 50px;
    background-color: aliceblue;
}
.button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.button a{
    text-decoration: none;
    color: rgb(51, 0, 98);
    font-weight: bold;
    font-size: 24px;
}