* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    font-family: "Montserrat", sans-serif;
    color: white;
    text-align: center;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.landing {
    min-height: 100vh;
    background: url('../assets/tori.jpg');
    background-size: cover;
    padding: 0rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 10vh;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding-left: 10vw;
    font-size: 1.2rem;
}

#logo {
    font-family: "Lobster", cursive;
    font-weight: lighter;
    font-size: 2rem;
}

.big-text {
    /* position: absolute;
    top: 40%;
    left: 50%; */
    /* transform: translate(-50%, -40%); */
}

.big-text h2 {
    font-size: 5rem;
    padding: 0rem 0rem;
    white-space: nowrap;
}

.small-text {
    display: inline;
    text-align: center;
    font-size: 2rem;
    max-width: 80%;
    padding: 0rem 7vw;
    line-height: 150%;
}

.intro {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-text {
    color: aliceblue;
    font-family: "Heebo", sans-serif;
    font-size: 3rem;
}

.slider {
    background: rgb(10,45,115);
    background: linear-gradient(180deg, rgba(10,45,115,1) 0%, rgba(168,177,255,0.7315301120448179) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transform: translateY(100%);
}

.hide {
    background: black;
    overflow: hidden;
}

.hide span {
    transform: translateY(100%);
    display: inline-block;
}

.selected {
    border-bottom: 2px solid;
    padding-bottom: 3px;
    font-weight: bold;
}

button {
    text-decoration: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.2rem;
}

button:focus {
    text-decoration: none;
    outline: none;
}

.footer {
    width: 100%;
    padding-right: 5vw;
    text-align: right;
    position: absolute;
    left: 0;
    bottom: 0;
}

.about {
    min-height: 100vh;
    padding: 0rem 5vw;
    background: url('../assets/fuji-min.jpg');
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content {
    display: flex;
}

@media only screen and (max-width: 1400px) {
    .about-content {
        display: inline;
    }
}

.about-text {
    text-align: center;
    margin: 5% auto;
    min-width: 250px;
    width: 50%;
    height: auto;
    max-width: 600px;
    border-radius: 5px;
    background: #141414;
}

.skills {
    padding-bottom: 3%;
}

.skills img {
    object-fit: contain;
}

.skill-list {
    display: flex;
    list-style: none;
}

.skill-list {
    padding: 2% 2%;
}

th, td {
    width: 33;
    padding: 15px;
}

svg {
    fill: white;
}

@media only screen and (max-width: 1000px) {
    .big-text h2 {
        white-space: normal;
        font-size: 3.5rem;
    }

    .small-text {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 400px) {
    .big-text h2 {
        white-space: normal;
        font-size: 2.5rem;
    }

    .small-text {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.5rem;
    }
}
