.nav-container .nav-logo {
    width: 100%;
}
.nav-container .nav-logo h1 {
    font-size: 2rem;
    font-weight: 100;
}
.nav-container .nav-logo img {
    width: 120px;
}
.nav-menus {
    gap: 0;
}
.main-btn:active {
    scale: 1;
}
.nav-menus .main-btn:first-child {
    border-radius: 15px 0 0 15px;
}
.nav-menus .main-btn:last-child {
    border-radius: 0 15px 15px 0;
}
.detailGroup {
    padding: 5.6svh 0;
}
.detailGroup-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
.detailGroupBox {
    background-color: #030303;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s background-color;
    animation: fadein-noopacity 1s forwards;
    scale: .8;
    width: 50%;
    min-height: 100%;
}
.detailGroupBox:hover {
    background-color: #060606;
}
.detailGroupTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding-bottom: 1rem;
}
.detailGroupTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 100;
    user-select: none;
    pointer-events: none;
}
.detailGroupTitle svg {
    width: 32px;
    height: 32px;
    color: white;
}
.detailGroupParagraph {
    font-size: 1.15rem;
    font-weight: 100;
}
.detailGroupImages {
    display: flex;
    align-items: start;
    gap: 5px;
    justify-content: space-between;
}