nav {

    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: rgb(243, 239, 242);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    align-items: center;
    height: 10vh;
    border-radius: 50px;
    font-size: 15px;
    font-family: url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
    font-weight: 350px;
    border: 1px solid rgb(20, 22, 22);
    width: 80vh;


}

.Main {
    width: 100%;
    height: 87vh;
    display: flex;
    background-color: rgb(248, 243, 247);
}

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

.content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.content h1 {
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.content p {
    font-size: 12px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

.content button {
    width: 160px;
    background-color: transparent;
    height: 48px;
    border: 1px solid rgb(41, 2, 2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3 linear;
    font-size: 18px;
}

.content button:hover {
    transform: translateY(-10%);
    background-color: rgb(77, 3, 25);
}

.rightside {
    width: 50%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rightside img {
    width: 50%;
    height: 52%;
    border-radius: 50%;
    transition: all 0.3 linear;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.rightside img:hover {
    transform: translateY(-10%);
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
}