@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    cursor: url(../img/cursor.png), auto;
}

body {
    min-height: 100vh;
    background: radial-gradient(125% 125% at 50% 10%, #000 40%, #63e 100%);
    /* background-color: aqua; */
}

.outer {
    display: flex;
    flex-direction: column;
}

.top {
    height: 14vh;
}

.unique {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100vw;
}

.left {
    height: 100%;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.right {
    height: 100%;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 125px;
}

.logo:hover {
    border-radius: 100%;
    cursor: pointer;
    /* background-color: rgb(255, 218, 174); */
    ;
}

.ul {
    list-style-type: none;
    display: flex;
    column-gap: 80px;
}

.ul li {
    font-size: larger;
}

.ul li:hover {
    font-weight: 600;
    text-transform: uppercase;
}

.ul li a {
    text-decoration: none;
    color: #9c33ff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    margin: 0px 5vw;
    align-items: center;
    /* margin-bottom: 35px; */
}

.upon {
    display: flex;
    flex-direction: row;
    row-gap: 50px;

}

.first>img {
    width: 40%;
    margin-right: 10vw;
    height: auto;
    border-radius: 30px;
}

.second>img {
    width: 40%;
    margin-left: 15vw;
    height: auto;
    border-radius: 30px;
}

.underleft {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10vh;
}


.upone {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: x-large;
    border-radius: 30px;
    text-transform: uppercase;

}

.yup {
    font-size: x-large;
}

.downone {
    border-radius: 30px;
    width: 50vw;
    padding: 15px;
    font-size: larger;
    color: #63e
}

.downone:hover {
    /* background-color: rgb(255, 218, 174); */
    /* color: #bf0040; */
    /* color: #800080; */
    color: #ff4d88;
    background: radial-gradient(125% 125% at 50% 10%, #000 40%, #63e 100%);
}


.upone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35vw;
}

@media (max-width:850px) {
    .unique {
        flex-direction: column-reverse;
        height: auto;
    }

    .right {
        width: 100%;
        height: 70%;
        /* border: 2px solid red; */
    }

    .downone {
        width: 80vw;
    }

    .left {
        margin-top: 30px;
        height: 100%;
        width: 100%;
        /* border: 2px solid blue; */
    }

    .upone {
        justify-content: center;
        flex-direction: row;

    }

    .upone>.first>img {
        height: auto;
        width: 180px;

    }

    .upone>.second>img {
        height: auto;
        width: 160px;
    }

}

@media (max-width:500px) {
    .upone {
        height: auto;
        width: 100%;
        display: flex;
        margin: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 5px;
        /* border: 2px solid red; */
    }

    .upone>.first>img {
        margin: 0%;
    }

    .upone>.second>img {
        margin: 0%;

    }

    .navbar {
        display: flex;
        flex-direction: column;
    }

    .ul {
        column-gap: 15px;
    }

    .left {
        padding-top: 30px;
    }

    .downone {
        font-size: medium;
    }
}