body {
    margin: 0;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    text-align: center;
    margin-bottom:7vh; /* Move container down from the top */
}

.logo {
    width: 140px; /* Adjust size as needed */
    margin-bottom: 3vh; /* Space dependent on screen height */
    transition: width 0.5s ease; /* Add transition for width */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 5vh 0; /* Space between links dependent on screen height */;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease, padding-left 0.3s ease; /* Transition for color and padding */
    position: relative; /* Required for positioning the arrow */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Hover effect for non-touch devices */
@media (hover: hover) {
    nav ul li a:hover {
        padding-left: 10px; /* Add space for the arrow */
    }

    nav ul li a:hover::before {
        content: '\27F6'; /* Unicode character for rightLongArrow */
        position: absolute;
        left: -20px; /* Position arrow outside the padding */
        transition: left 0.3s ease; /* Smooth transition for arrow */
        font-family: "Inter", sans-serif; /* Ensure Inter font is applied */
    }
}


.social-media {
    margin-top: 15vh; /* Space dependent on screen height */
}

.social-media img {
    width: 25px; /* Adjust size as needed */
    transition: width 0.25s ease; /* Add transition for width */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Mobile Styles */
@media (max-width: 600px) {
    body {
        font-size: 15px;
    }
    .logo {
        width: 110px; /* Adjust size as needed */
    }

    nav ul li {
        margin: 35px 0;
    }

    .social-media img {
        width: 20px; /* Adjust size as needed */
    }
}
