/* styles.css */
body {
    font-family: Arial, sans-serif;
    font-size: 25px;
}

a {
    font-size: 1em;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1em;
}

li {
    font-size: 1em;
}

.text-icon {
    width: 0.83em;
}

.even-spaced-container {
    display: flex;
    justify-content: space-between;

}

.center {
    margin: 0 auto;
    width: 60%;
}

.center-text {
    text-align: center;
}

.website-header {
    text-align: center;
    margin-bottom: 0.1em;
}

.navbar {
    text-align: center;
    margin-bottom: 1.5em;
}

.flying-right {
    position: relative;
    top: 50%;
    /* left: 50%; */
    animation: moveAnimation 20s linear infinite;
}

@keyframes moveAnimation {
    0% {
        transform:  translateX(0);
    }
    25% {
        transform:  translateX(0);
    }
    75% {
        transform: translateX(150%);
    }
    75.001% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(0);
    }
}

/* media queries */
@media all and (orientation: portrait) {
    /* scale everything up for portrait mode */
    body {
        font-family: Arial, sans-serif;
        font-size: 18px;
    }
    .center {
        margin: 0 auto;
        width: 80%;
    }
}

