* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
.browser {
    background-color: #25adc0;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    border-bottom: #444 solid 2px;
    position: fixed;
    z-index: 1000;
}
.tab {
    width: 225px;
    height: 35px;
    background-image: linear-gradient(50deg,#529ea6, #269dac, #0c5058);
    border: #86c9d2 2px solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}


.icon img {
    width: 20px;
    height: 20px;
}

.close {
    margin-left: 85px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.close:hover {
    background-color: #4b6f74;
}

#newtab {
    margin-left: 6px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#newtab:hover {
    background-color: #0c5058;
}

.nav {
    background-color: #25adc0;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    border-bottom: #444 solid 2px;
    gap: 5px;
    margin-top: 45px;
    position: fixed;
    z-index: 999;
}

.nav i {
    width: 30px;
    height: 30px;
    background-color: #86c9d2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav i:hover {
    background-color: #65a2aa;
}

.push {
    margin-left: 10px;
}

.nav input {
    width: 87%;
    height: 30px;
    border-radius: 20px;
    border: #066a75c9 3px solid;
    background-color: #3a8c97;
    outline: none;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.nav input:focus {
    border-color: #86c9d2;
    box-shadow: 0 0 8px rgba(134, 201, 210, 0.4);
}

.nav input[type="text"]::placeholder {
    color: #fff;
}

.nav input[type="text"] {
    color: #fff;
}

.main {
    background-image: linear-gradient(60deg,#0b353a, #269cacd4, #0b353a);
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 70%;
    height: 80vh;
    background-color: transparent;
}

.center #ub {
    margin-top: 140px;
}

#ub {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#mainsearch {
    width: 40%;
    height: 40px;
    border-radius: 20px;
    outline: none;
    border: none;
    padding-left: 10px;
    transition: all 0.3s ease;
}


.custom {
    background-color: #034b54b0;
    width: 140px;
    height: 25px;
    border-radius: 20px;
    margin: 520px 0 0 1110px;
    position: fixed;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.custom span {
    font-size: 11px;
}

.custom i {
    margin-left: 10px;
    font-size: 13px;
}
.custom:hover {
    background-color: #02424bea;
}