body, html {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: white;
    border-top: 1px solid black;
    border-bottom: 1px solid grey;
}

.website-name {
    font-weight: 600;
    font-size: 20px;
    margin: 0 10px;
}

.navigation {
    display: flex;
    gap: 20px;
    margin: 0 10px ;
}

.nav-item {
    color: grey;
}

.nav-item.red {
    color: red;
    text-decoration: underline;
}

.content-container {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 60px);
}

.left-container {
   width: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: white;
}

.left-container h1 {
    font-size: 60px;
    font-weight: 600;
}

.right-container {
    width: 50%;
    background-color: rgb(94, 93, 93);
    color:white;
    padding-top: 50px;
    padding-left: 50px;
}

.right-container h2 {
    font-size: 36px;
    font-weight: 600;
}

.right-container p {
    width: 500px;
    margin-top: 50px;
    font-size: 18px;
}

.purple-text {
    color: rgb(167, 157, 217);
}