body, html {
    margin: 0;
    padding: 0;
    background: var(--vyzon-full-bg);
    color: var(--vyzon-text-hard);
    font-family: "Roboto";
}
md-dialog {
    min-width: 600px;
}
md-icon {
    font-family: 'Material Symbols Rounded';
    color: var(--vyzon-text);
}
.content {
    position: absolute;
    top: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.topmenu {
    height: 30px;
    border-bottom: 1px solid var(--vyzon-outline);
    display: flex;
    padding: 10px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}
.logotext {
    font-size: 23px;
    color: var(--vyzon-text)
}
.vylogo {
    height: 100%;
}

.right {
    margin-left: auto;
}
.vztopbutton {
    padding: 8px 15px;
    font-family: "Roboto";
    color: white;
    font-size: 13px;
    background: var(--vyzon-accent);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.vztopbutton:hover {
    background: var(--vyzon-accent-75);
}
.vztopbutton:active {
    background: var(--vyzon-accent-50);
}
.vztopbutton.text {
    background: transparent;
    color: var(--vyzon-accent);
}
.vztopbutton.text:hover {
    background: var(--vyzon-accent-15);
}
.vztopbutton.text:active {
    background: var(--vyzon-accent-25);
}

.main {
    width: calc(100% - 40px);
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
}
.mainhead {
    font-weight: normal;
    font-size: 40px;
    position: relative;
    text-shadow: 0 0 20px var(--vyzon-text);
    margin: 0;
}
.mainhead::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    box-shadow: 0 0 200px 150px var(--vyzon-accent-50);
    z-index: -1;
}
.vztopbutton.mainbtn {
    width: fit-content;
    padding: 10px 20px;
    font-size: 16px;
}

.mainbg {
    position: fixed;
    right: -5vh;
    z-index: -2;
    opacity: 50%;
    width: 50%;
}
.tasksimg {
    transform: matrix(1.25, 0.2, -0.8, 0.7, 0, 20);
    border-radius: 40px;
}

.benefits {
    width: calc(100% - 120px);
    padding: 60px;
    background: var(--vyzon-bg-alt);
    gap: 40px;
    display: flex;
    flex-direction: column;
}
.benefit {
    display: flex;
    align-items: center;
}
.benefittext {
    display: flex;
    flex-direction: column;
    max-width: 50%;
}
.benefithead {
    font-weight: 600;
    font-size: 35px;
}
.benefitessay {
    font-size: 20px;
}
.benefitimg {
    height: 250px;
    border-radius: 25px;
    box-shadow: 0 0 30px 10px var(--vyzon-accent-75);
}

.benefit:nth-child(even) {
    flex-direction: row;
    text-align: right;
}
.benefit:nth-child(even) .benefittext {
    margin-left: auto;
}
.benefit:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: left;
}
.benefit:nth-child(odd) .benefittext {
    margin-right: auto;
}

.prefooter {
    padding: 50px;
    padding-top: 75px;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    text-shadow: 0 0 50px var(--vyzon-accent);
}
.foothead {
    font-size: 35px;
    margin: 0;
}
.foottext {
    font-size: 20px;
}
.footer {
    background: black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
}
.logos {
    display: flex;
    align-items: center;
}
.footlogos {
    display: flex;
    align-items: top;
    gap: 5px;
}
.footlogo {
    height: 40px;
}
.footlogo.vyzon {
    height: 30px;
}
.social {
    margin-left: auto;
    display: flex;
    gap: 10px;
}
.sociallogo {
    height: 20px;
}
.footerbottom {
    display: flex;
    font-family: "Lexend";
    font-size: 15px;
}
.email {
    margin-left: auto;
}
@media (max-width: 600px) {
    .benefit {
        flex-direction: column !important;
    }
    .benefit:not(:last-child) {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--vyzon-outline);
    }
    .benefit:last-child .benefittext {
        margin-top: -10px;
    }
    .benefits {
        padding: 30px;
        width: calc(100% - 60px);
    }
    .benefitimg {
        width: 100%;
        height: auto;
    }
    .benefittext {
        max-width: 100%;
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }
    .benefithead {
        font-size: 26px;
    }
    .benefitessay {
        font-size: 16px;
    }
    .mainbg {
        right: -25vh;
    }
}