body {
    margin: 0px;
    padding: 0px;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    background: linear-gradient(-45deg, rgb(187, 199, 214),rgb(237, 246, 255));
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    margin: 0px;
    padding: 0;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
    z-index: 999;
}

header h1 {
    margin: 0px;
    padding: 0.2rem 1rem;
    background-color: black;
    color: white;
    display: inline-block;
    font-weight: 700;
}

header p {
    display: inline;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60vh;
    padding: auto 10vw;
    color: white;
    background: linear-gradient(-45deg, rgb(146, 128, 189), rgb(6, 7, 80));
}
.hero h2 {
    font-size: 3rem;
}
.lowlight {
    font-size: 0.8rem;
    color: rgb(150, 150, 150);
}
.sub-genre {
    text-align: center;
}
section h2 {
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
}
.maker {
    text-align: center;
}

.type h3 {
    font-size: 2rem;
    margin-left: 2rem;
}
.detial-grid {
    margin: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.vehicle-name {
    text-align: center;
    background-color: white;
    border-radius: 10px;
}
.vehicle-name img {
    width: 100%;
}
.vehicle-name h4 {
    margin: 0px;
}
.vehicle-detial {
    background-color: white;
    border-radius: 10px;
    padding: 0 1rem;
}
.vehicle-detial hr {
    border: none;
    background-color: rgb(35, 64, 89);
    height: 2px;
}
.vehicle-detial h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 1rem;
}
.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.vehicle-genre {
    display: flex;
    flex-direction: column;
}

.tab_bar {
    background-color: rgb(35, 64, 89);
    border: none;
    height: 4px;
    width: 3rem;
    transition: 0.3s ease;
}
.tab_bar_focus{
    width: 6rem;
}
.content {
    visibility: hidden;
    transform: translateY(2rem);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.content_show {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}
footer *{
    margin: 16px 0 0 0;
    padding: 1rem;
    background-color: rgb(35, 64, 89);
    color: white;
}