@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(
        135deg,
        rgba(0, 204, 0, 1) 0%,
        rgba(0, 153, 0, 1) 100%
    );
}

/* keyframes */
@keyframes navBarButton {
    from {
        background-color: darkgray;
        color: lightgray;
    }
    to {
        background-color: black;
        color: white;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blackToWhite {
    from {
        color: black;
    }
    to {
        color: white;
    }
}

/* navbar */
.navbar {
    font-size: 2em;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100%;
}

.navbar ul {
    list-style-type: none;
    margin-top: 0;
    padding: 10px;
}

.navbar li {
    transform: rotate(180deg);
    background-color: darkgray;
    color: lightgray;
    height: 180px;
    padding: 25px;
    margin-bottom: 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.navbar li.active {
    background-color: black;
    color: white;
    animation-name: navBarButton;
    animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
}

/* title */
.title {
    text-align: center;
    background-color: black;
    color: white;
    margin-top: 30px;
    margin-right: 30px;
    padding: 10px;
    display: inline-block;
}

/* content */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 150px;
}

.text-container {
    display: flex;
    align-items: flex-start;
    animation: slideIn 0.5s;
}

.text-top {
    font-size: 1.75em;
    margin: 0px;
    min-width: 240px;
    margin-right: 25px;
}

.text-bottom {
    font-size: 1.75em;
    margin: 0px;
    min-width: 240px;
}

.content_image {
    margin-top: 30px;
    margin-right: 30px;
    max-height: 360px;
}

.content_title {
    font-size: 3em;
    margin-bottom: 0;
    margin-top: 30px;
}

.title_text {
    transform: scale(2);
    transform-origin: center center;
    animation: blackToWhite 0.5s;
}

.carl {
    margin-right: 30px;
}

.logo {
    height: 90px;
}
.weapon_showcase {
    animation: slideIn 0.5s;
}

.weapon_showcase td {
    font-size: 2em;
    font-weight: bold;
}

.weapon_showcase img {
    max-height: 140px;
}

#weapon_text {
    opacity: 0;
    animation: slideIn 0.5s forwards 0.25s;
}

#image {
    animation: slideIn 0.5s;
    max-height: 100%;
    margin-right: 30px;
    margin-top: 30px;
}

a {
    color: inherit;
    text-decoration: none;
}
