@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Inter", serif;
}

html {
    scroll-behavior: smooth;
}

[id^="main"] [id*="about"] [id*=""] {
    scroll-margin-top: 100px;
}

nav {
    width: 100%;
    height: 100px;
    position: fixed;
    background-color: #ffffff;
}

.nav-content {
    width: 1500px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-content .nav-logo {
    display: flex;
    align-items: center;
}

.nav-content .nav-logo img {
    height: 75px;
}

.nav-content .nav-menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.nav-content .nav-menu a {
    margin-left: 25px;
    margin-right: 25px;
    color: #000000;
}

.nav-content .nav-socials {
    display: flex;
    align-items: center;
}

.nav-content .nav-socials img {
    height: 25px;
    margin-right: 25px;
}

main {
    width: 100%;
}

.main-content {
    width: 1500px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-intro {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-intro img {
    width: 600px;
    height: 600px;
    border-radius: 25px;
    object-fit: cover;
    background: #d0d0d0;
}

.second-content {
    width: 100%;
    height: calc(100vh);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d0d0d0;
}

.second-alt-content {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 350px;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 350px;
}

.about-right h1 {
    margin-right: auto;
}

.about-right ul {
    width: 300px;
}

.about-right li {
  display: flex;
  width: 100%;
}

.about-right li b {
  white-space: nowrap;
  flex-shrink: 0;
}

.about-right li p {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  margin-left: 10px;
  text-align: right;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}


footer {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    width: 1500px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}