* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: hsl(0, 0%, 89%);
    ;
}

main {
    display: flex
}

.first {
    display: flex;

}

.last {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 150px;

}

.mark {
    width: 30vw;
    height: 80vh;
    background-image: linear-gradient(to bottom, hsl(293, 100%, 63%), hsl(264, 100%, 61%));
    border: 0;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 190px;
}

nav {
    height: 65px;
    background-image: linear-gradient(to right, hsl(264, 100%, 61%), hsl(293, 100%, 63%));
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.mobile {
    background-color: hsl(296, 88%, 97%);
    width: 260px;
    height: 480px;
    border: 19px solid white;
    border-radius: 25px;
    transform: translateX(-60px) translateY(50px);
}

.up {
    height: 20px;
    width: 150px;
    background-color: white;
    border: 0px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.down {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.down section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.down section div {
    display: flex;
    flex-direction: column;
}

.angleLeft,
.doticon {
    height: 10px;
    filter: brightness(0) invert(1);
}

.avatar {
    height: 25px;
    border: 0;
    border-radius: 50%;
}

.text1 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 5px;
    margin: 7px;
}

.text1 p {
    height: 30px;
    width: 120px;
    font-size: 8px;
    background-color: hwb(293 81% 0%);
    color: hsl(264, 100%, 61%);
    border: 0;
    border-radius: 10px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dogpics {
    display: flex;
    justify-content: end;
    gap: 5px;
    margin: 12px 7px;
}

.dogpics img {
    height: 38px;
    border: 0;
    border-radius: 8px;
}

.text2 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 5px;
    margin: 7px;

}

.text2 p {
    height: 30px;
    width: 120px;
    font-size: 8px;
    background-color: white;
    border: 0;
    border-radius: 10px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.costing {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    gap: 5px;
}

.costing section {
    height: 30px;
    width: 120px;
    background-color: hsl(279, 100%, 61%);
    border: 0;
    border-radius: 9px;
    display: grid;
    grid-template-columns: 20px 60px 20px;
    justify-content: center;
    align-items: center;
}


.circle {
    height: 15px;
    width: 15px;
    border: 2px solid rgba(255, 255, 255, 0.545);
    border-radius: 50%;
}

.costing section p {
    font-size: 8px;
    color: white;
}

.costing section h1 {
    font-size: 14px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    margin-top: 18px;
}

form label {
    transform: translateX(85px) translateY(-38px);
}

form input {
    height: 45px;
    width: 214px;
    border: 0;
    border-radius: 40px;
    padding: 0px 40px 0px 20px;
}

form label button {
    border: 0px;
    border-radius: 50%;
    background-color: rgb(49, 49, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

form label img {
    height: 30px;
    padding: 5px;
    border: 0;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

@media only screen and (max-width:707px) {
    body {
        overflow: auto;
    }

    main {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .mark {
        width: 60vw;
        height: 55vh;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 230px;
    }

    .mobile {
        transform: translateX() translateY();
    }

    .last {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin: 30px;
    }

}