@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inconsolata:wght@200..900&display=swap');

@media (min-width: 801px) {
    body {
        font-size: 24px;
    }

    p {
        text-align: center;
    }

    #landing {
        font-size: 48px;
    }

    .Navbar span {
        font-size: 16px;
    }

    .Navbar a {
        font-size: 32px;
    }

    .Footer ul {
        gap: 2vw;
        font-size: 24px;
    }

    @keyframes scroll-left {
    0% {
        transform: translateX(40%);
    }
    100% {
        transform: translateX(-100%);
    }
}
}

@media (max-width: 800px) {
    body {
        font-size: 20px;
    }

    p {
        text-align: left;
    }

    #landing {
        font-size: 64px;
    }

    .Navbar span {
        font-size: 16px;
    }

    .Navbar a {
        font-size: 24px;
    }

    .Footer ul {
        gap: 4vw;
        font-size: 16px;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(70%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    text-align: left;
    font-family: 'Inconsolata', monospace;
    text-shadow: 1px 1px 1px rgb(0, 0, 0, .8);
    color: #E8D9B9;
    display: block;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #600000;
}

a:hover {
    color: #C21807;
    text-shadow: 0px 0px 24px rgb(194, 24, 7, .9);
}

p {
    margin: 24px 8px 24px 8px;
}

h2 {
    font-weight: bolder;
    font-family: "Anton", sans-serif;
}

#index {
    background-image: url("pretty.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#about {
    background-image: url("me.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#projects {
    background-image: url("snow.png");
    background-size: cover;
    background-repeat: no-repeat;
}

#resume {
    background-image: url("sky.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.Title {
    margin: 0;
    padding: 0;
    color: #00E5FF;
    text-align: center;
}

.Container {
    width: 80vw;
    margin: 8px;
    padding: 8px;
    background-color: rgb(0, 0, 0, 0.7);
    border-radius: 16px;
    text-align: center;
}

.Container p {
    text-align: left;
    line-height: 1.5;
}

.Indication {
    font-style: italic;
    color: #600000;
}

.Indication:hover {
    color: #C21807;
}

.Indicator {
    color: #00E5FF;
}

.Navbar {
    background-color: rgb(0, 0, 0, .5);
    margin: 0;
    padding-top: 8px;
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Anton", sans-serif;
}

.Navbar span {
    color: #CFFAFF;
    font-style: italic;
    animation: scroll-left 10s linear infinite;
    text-align: right;
}

.Navbar ul {
    display: flex;
    margin: 0;
    margin-top: 1vh;
    padding: 0;
    list-style-type: none;
    justify-content: center;
}

.Navbar li {
    padding: 0 1vw;
}

.Navbar a {
    padding: 2vh 4vw;
}

.Page {
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 8px;
    font-family: "Anton", sans-serif;
    background-color: rgb(0, 0, 0, .5);
}

.Footer p {
    text-align: left;
}

.Footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 4vw;
}

.Job {
    margin-top: 1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Job img {
    margin: 1vw;
    height: auto;
    width: 25%;
}

.Job p {
    max-width: 60vw;
}

.Job h2 {
    padding-left: 1vw
}

.JobSpecs {
    margin: 1vw;
}