* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    background: #1d2026;
}

.menu {
    width: 100%;
    color: #fff;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    padding: 20px 8%;
    font-weight: bold;
    background: #1d2026;
}

.logo {
    width: 50px;
}

nav ul {
    flex: 1;
    text-align: right;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 5px 20px;
}

nav ul li a {
    color: #fff;
}

nav span {
    padding-left: 20px;
    font-size: x-large;
    color: #fff;
}

.collaborate-link,
.collaborate-link:visited {
    color: #4a9eff;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

body {
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    flex: 1;
}

.subtext {
    text-align: center;
    line-height: 1.2;
}

.subtext p {
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.hiring-text {
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
    margin: auto;
    line-height: 1.2;
}

.hiring-text p {
    margin-bottom: 20px;
}

h1 {
    padding: 25px;
    align-items: center;
    text-align: center;
    font-size: 60px;
}

h2 {
    padding-bottom: 20px;
    align-items: center;
    text-align: center;
    font-size: 40px;
}

.container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 900px;
    max-width: 1200px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.text-section {
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.device-section {
    margin: auto;
    position: relative;
    width: 300px;
    overflow: hidden;
}

.device-section img {
    width: 100%;
}

.iphone-video {
    position: absolute;
    top: 1.75%;
    left: 4.5%;
    right: 4%;
    width: 91.5%;
    height: 96.5%;
    border-radius: 40px;
}

.watch-video {
    position: absolute;
    top: 25%;
    bottom: 23%;
    left: 10.5%;
    right: 15%;
    width: 74.5%;
    height: 52%;
    object-fit: fill;
    border-radius: 38px;
}

.highlight {}

.pagebody {
    flex: 1;
}

html {
    height: 100%;
}

.applink {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer {
    padding: 20px 8%;
    align-items: center;
    text-align: center;
    color: #808080;
}

/* Adjustments for smaller screens */
@media (max-width: 900px) {
    nav {
        padding-bottom: 15px;
    }

    h1 {
        padding-top: 0px;
    }

    .subtext p {
        padding-bottom: 10px;
    }

    .container {
        flex-direction: column;
        width: auto;
        padding-top: 0px;
        padding-bottom: 5px;
    }

    .device-section {
        order: 2;
        /* This will make the device-section appear second */
    }

    .text-section {
        order: 1;
        /* This will make the text-section appear first */
        padding-right: 10px;
        padding-left: 10px;
    }

    .applink {
        margin-bottom: 5px;
    }
}

.about-container {
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.about-text-section {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.2;
}

.about-image-section {
    padding-left: 20px;
    padding-right: 20px;
}

/* Adjustments for smaller screens */
@media (max-width: 700px) {
    .about-container {
        flex-direction: column;
    }

    .about-text-section {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 5px;
    }
}

.about-image-section img {
    width: 300px;
}