* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.BrandTitle {
    font-size: 50px;
    font-weight: 900;
    text-shadow: 5px 4px #000;
    color: #fff;
    text-decoration: underline;
    padding-top: 15px;
    transition: .3s ease-in-out;
}

.BrandTitle:hover {
    color: #f2a900;
}

.main {
    min-height: 100vh;
    background: linear-gradient(35deg, #BF18DC, #4d757c);
    overflow: hidden;
    color: #fff;
    text-align: center;
}


.main h1 {
    padding-top: 100px;
    text-align: center;
}

.content {
    padding-top: 70px;
    min-height: 100vh;

}

.inputt label {
    font-weight: bolder;
    font-size: 25px;
    display: block;
    padding: 10px;
}

.inputt input {
    width: 50%;
    height: 50px;
    font-size: 25px;
    padding: 10px;
    border-radius: 20px;
}

#error {
    padding: 10px;
    font-size: 25px;
    color: #00fff3ed;
}


.btn {
    padding-top: 50px;
    padding-bottom: 20px;
}

.btn button {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    font-size: 25px;
    padding: 20px 100px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    overflow: hidden;
}

.btn button:hover {
    color: #000;
    background: #fff;
}

.btn button:active {
    background-color: #00fff3;
    border: 2px solid #000;
    transform: translateY(15px);
}

.lbel {
    font-size: 20px;
    font-weight: bolder;
    padding-top: 20px;
    display: block;
}

.result input {
    width: 50%;
    height: 50px;
    font-size: 25px;
    padding: 10px;
    border-radius: 20px;
}

/*  */

footer {
    background: linear-gradient(35deg, #BF18DC, #4d757c);
    color: white;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    gap: 20px;
    padding: 50px 20px;
    max-width: 2000px;
    margin: 0 auto;
}

.ftrheadingssss {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
}

.about {
    flex-grow: 1;
    flex-basis: 70%;
}

.about p {
    font-size: 20px;
}


.services {
    flex-grow: 1;
    flex-basis: 70%;
}

.services ul {
    list-style-type: none;
    line-height: 2;
}

.services a {
    color: white;
    text-decoration: none;
}

.services a:hover {
    color: #00fff3;
    text-decoration: underline;
}

.services ul li {
    font-size: 20px;
}


.contact {
    flex-grow: 1;
    flex-basis: 70%;
}

.contact ul {
    list-style-type: none;
    line-height: 1.5;
}

.contact ul li {
    font-size: 21px;
}

.contact a {
    color: white;
    text-decoration: none;

}

.contact a:hover {
    color: #00fff3;
    text-decoration: underline;
}

.copyright {
    padding: 15px 0;
    text-align: center;
    border-top: 2px solid black;
}


/*  */

@media (max-width: 1150px) {
    .result input {
        width: 100%;
    }

    .inputt input {
        width: 100%;
    }

    .container {
        flex-direction: column;
        word-break: break-all;
    }

}