html, body {
    margin: 0;
    padding: 0;
}

* {
    font-family: "Open Sans", sans-serif;
}

#app {
    display: flex;
    flex-direction: column;

    background: #afafaf;

    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #eeeeee;

    width: calc(100% - 512px);

    padding: 24px 256px;
}

.header-ctn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-ctn2 {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-img {
    height: 64px;
}

.header-btn {
    color: #1e1e1e;

    font-size: 18px;
    font-weight: 600;
}

.header-btn:hover {
    cursor: pointer;
}

.underline {
    background: #1e1e1e;

    width: 0%;
    height: .1rem;

    transition: width .3s;
}

.header-btn:hover > .underline {
    width: 100%;
}

.home {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    background: url("bg1.png");
    background-size: 100%;
    
    height: 860px;

    margin: 0 256px 0 256px;
}

.home-content {
    background: #042943;
    color: #fff;

    font-size: 37px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    line-height: 200%;
    letter-spacing: 5px;

    margin: 64px;
    padding: 32px;
    border: 15px solid #9e643c;
}

.home-content > span {
    font-size: 44px;
    font-weight: 800;
}

.tabs {
    display: flex;
    background: linear-gradient(90deg, #0e0f3b 50.91%, #fec619 50.95%);
    
    padding-bottom: 64px;
    margin: 0 256px;
}

.tab-left {
    display: flex;
    flex-direction: column;
    gap: 12px;

    color: #fff;
    font-size: 19px;

    width: calc(50.91% - 64px);

    padding: 0 32px;
}

.bg-ctn {
    font-weight: 600;
}

.bg-ctn-a {
    color: #eee;
    font-size: 16px;
    font-weight: 400;
}

.tab-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;

    width: 49.09%;
}

.tab-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.tab-text {
    color: #0e0f3b;

    font-size: 28px;
    font-weight: 600;
    text-align: center;

    padding: 0 62px;
}

.tab-qr {
    background: #fff;

    height: 256px;
    width: 256px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #eeeeee;

    height: 32px;
    width: calc(100% - 512px);

    padding: 12px 256px;
}

/* 
.home {
    background: var(--bg2);
    
    padding: 12.593vmin 26.704vmin 0 26.704vmin;
}

.home-ctn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 96px;

    color: #fff;
}

.home-ctn-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.home-ctn-title {
    font-size: 42px;
    font-weight: 600;
}

.home-ctn-desc {
    font-size: 30px;
    font-weight: 500;
}

.home-ctn-date {
    font-size: 24px;
    font-weight: 500;
}

.home-ctn-place {
    font-size: 24px;
    font-weight: 500;
}

.home-ctn-right {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 512px;
    width: 512px;
}

.home-btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-btn {
    background: #ffffff90;
    color: var(--bg2);

    font-size: 16px;
    font-weight: 600;
    
    padding: 10px 32px;
    transition: background .3s;
    border-radius: 8px 8px 0 0;
}

.home-btn:hover {
    background: #ffffffcc;
    cursor: pointer;
}

.home-btn.active {
    background: #ffffff;
}

.content {
    background: var(--bg1);

    padding: 0 26.704vmin 5.926vmin 26.704vmin;
}

.content-item {
    display: flex;
    flex-direction: column;
    gap: 12px;

    background: #fff;

    padding: 5.926vmin;
    border-radius: 0 0 8px 8px;
}

.parking {
    background: var(--bg2);

    height: 512px;
}

.footer {
    background: #1e1e1e;
    color: #fff;

    padding: 24px 26.704vmin;
} */