/* Removing defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* New defaults */
/* Font */
@font-face {
    font-family: 'Munro';
    src: url('Munro.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  }

body {
    font-family: 'Munro', sans-serif;
}

a {
    text-decoration: none;
}

/* li {
    list-style: none;
} */
.menu {
    list-style: none;
}

.TopNavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #683b73;
    color: #fff;
}

.nav-links a {
    color: #fff
}

.logo {
    font-size: 32px;
}

.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}
    
.menu li:hover {
    background-color: #f0b175;
    border-radius: 5px;
    transition: 0.3s ease;
}
    
.menu li {
    padding: 5px 14px;
}

/* Body Stylings */
.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.item {
    font-size: 25px;
    height: 100vh;
}

.item-1 {
    flex-basis: 25%;
    border-right: 2px solid black;
    
}

.item-2 {
    flex-basis: 75%
}

/* Adjust flexbox layout so that it does not look strange on mobile */
@media (orientation: portrait) or (max-width: 600px) {
    .container {
      flex-direction: column;
    }
    .item-1 {
        border-right: 0px solid black;
        border-bottom: 2px solid black;
        padding-bottom: 20px;
    }
  }

/*Specific element styling*/
.right-intrests-list {
    padding-left: 40px;
    font-size: 20px;
    list-style-image: url('bullet1.png');
    text-decoration: underline;
}

.social-links {
    padding-left: 40px;
    font-size: 20px;
    list-style-image: url('bullet1.png');
    text-decoration: underline;
}

.circle-image {
    max-width: 100%;
    border-radius: 50%; /* Trim the image into a circle shape */
  }