body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #14213d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: auto;
    overflow-x: hidden;
    font-size: 100%; /* This sets the default font size to 16px in most browsers */
}

header, footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

header h1 {
    color: #ffffff;
    margin: 0;
    font-size: 1.75rem; /* 28px when body font-size is 16px */
}

main {
    /*padding: 50px 20px;*/
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
}

.contact a {
    color: #fca311;
    text-decoration: none;
}

.contact {
    margin-top: 30px;
}

.journey-text {
    font-size: 1.625rem; /* 26px when body font-size is 16px */
}

.emphasized {
    font-size: 1.5rem; /* 24px when body font-size is 16px */
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #fca311;
    color: #14213d;
    padding: 10px 20px;
    border: 3px solid #ffffff;
    display: inline-block;
}

.robot {
    font-size: 3rem; /* 48px when body font-size is 16px */
}

.star {
    position: absolute;
    color: #fca311;
    font-size: 0.75rem; /* 12px when body font-size is 16px */
    z-index: -1;
}

@media (max-width: 600px) {
    .robot {
        font-size: 2rem; /* 32px when body font-size is 16px */
    }
}

@media (min-width: 900px) and (max-width: 1000px) {
    body {
        font-size: 110%; /* Increase the base font size to 17.6px */
    }
    .emphasized {
        font-size: 1.75rem;
    }
    p {
        font-size: 1.25rem;
    }
    .robot {
        font-size: 3.625rem;
    }
    header h1 {
        font-size: 1.75rem;
    }
}

.emojis {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
