main {
    background: radial-gradient(circle, #004064 0%, #002037 85%);
    min-height: 100vh;
    padding-top: 0px;
}

.door-content {
    text-decoration: none !important;
    overflow: hidden;
}

#primary {
    margin-bottom: 0px;
}

.door-wrapper {
    position: relative;
    height: 210px;
    width: auto;
    aspect-ratio: 3/4;

    font-weight: 700;
    color: white;
}

.door-wrapper.active img {
    height: 100%;
    width: 0%;
    margin-left: 50%;
    transition-duration: 1s;
    object-fit: cover;
}

.door-wrapper.active:hover img {
    width: 100%;
    margin-left: 0%;
    transition-duration: 3s;
    object-fit: cover;
}

.door {
    border: #FFFFFF0A solid 2px;
    background-color: transparent;
    float: left;
    min-width: 50%;
    max-width: 50%;
    min-height: 100%;
    max-height: 100%;
    transition-duration: 2s;
}

.door p {
    text-shadow: #f00 1px 1px 4px, rgb(255, 238, 0) -1px -1px 4px;
    font-weight: 700;
    font-size: 4rem;
}

.door-content img {
    z-index: 1;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.door-wrapper.active.old:hover img {
    min-width: 100%;
    margin-left: 0%;
}

.door-wrapper.active.old img {
    min-width: 20%;
    margin-left: 40%;
}

.door-wrapper.active.old .door-left,
.door-wrapper.active.old .door-right {
    transform: rotateY(-50deg);

}

.door-wrapper.active:hover .door-left,
.door-wrapper.active:hover .door-right {
    transform: rotateY(-85deg);
}

.door-wrapper.active:not(.old) .door-left,
.door-wrapper.active:not(.old) .door-right {
    box-shadow: #FFF 0px 0px 10px;
}

.door-wrapper.active:hover .door-left {
    transform-origin: left;
}

.door-wrapper.active:hover .door-right {
    transform-origin: right;
}

.row * {
    display: flex;
    justify-content: center;
}

.logo {
    position: fixed;
    top: 0px;
    left: 0px;
    justify-content: center;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}