body {
    margin: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    font-family: Avenir Next;
    background-color: #f5f5f5;
}
.header {
    width: 100%;
    height: 30%;
    display:flex;
    align-items: center;
    justify-content: center;
    font-family: Avenir Next;
    font-size: Regular;

}
.title {
    margin: 30px 20px 0 20px;
}
.header h1 {
    font-family: Avenir Next;
    font-size: 4vw;
    font-weight: 400;
    text-align: center;
}
ul, li {
    padding: 0;
    list-style: none;
    display: flex;
}
.body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bodybox {
    max-width: 1124px;
    margin: 0 20px;
    flex-wrap: wrap;
}
.quido, .quido-lite {
    width: calc(50% - 52px);
    font-size: 20px;
    padding: 20px;
    border: 1px #dadada solid;
    text-align: center;
    background-color: #fafafa;
    border-radius: 15px;
    box-shadow: 0 0 4px 0 #bbb;
    -webkit-box-shadow: 0 0 4px 0 #bbb;
    flex-direction: column;
}
.quido {
    margin-left: 0;
    margin-right: 10px;
}
.quido-lite {
    margin-right: 0;
    margin-left: 10px;
}
.logo-quido img, .logo-quido-lite img {
    width: 100px;
    border-radius: 10px;
    margin-right: 20px;
}
.logo-quido, .logo-quido-lite {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-quido {
    color: #275766;
}
.logo-quido-lite {
    color: #329db1;
}
.description-quido-lite, .description-quido{
    flex: 1 0 auto;
}
.button {
    text-decoration: none;
    padding: 7px;
    border: 1.5px solid rgb(61, 61, 61);
    border-radius: 5px;
    color: rgb(61, 61, 61);
    margin: 0 5px;
}
.button:hover {
    background-color: rgb(61, 61, 61);
    color: white;
}
.buttons-quido-lite, .buttons-quido {
    margin-top: 20px;
}
.footer {
    width: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Avenir Next;
    font-size: 20px;
    margin-top: 30px;
    padding: 10px 0;
}
.other {
    background-color: #fafafa;
    border-radius: 15px;
    box-shadow: 0 0 4px 0 #bbb;
    -webkit-box-shadow: 0 0 4px 0 #bbb;
    padding: 30px 20px;
    margin: 0 20px 30px 20px;
    width: 1084px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: scroll;
    white-space: nowrap;
}
.othercontent {
    margin: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
}
.othercontent a, p {
    color: black;
    text-decoration: none;
    margin: 0 15px 0 0;
    display: inline-block;

}
.other a:hover {
    text-decoration: underline;
}
.quido div, .quido-lite div {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 750px) {
    .bodybox {
        flex-direction: column;
    }
    .quido, .quido-lite {
        margin: 10px 0;
        width: calc(100% - 42px);
    }
    .header h1 {
        font-size: 7vw;
    }
    body {
        position: relative;
    }

}
@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(16, 16, 16); 
        color: white;
    }
    .quido, .quido-lite {
        border: 1px #373737 solid;
        background-color: #232323;
        box-shadow: 0 0 4px 0 #2d2d2d;
        -webkit-box-shadow: 0 0 4px 0 #2d2d2d;
    }
    .button {
        border: 1.5px solid white;
        color: white;
    }
    .button:hover {
        background-color: white;
        color: black;
    }
    .other {
        border: 1px #373737 solid;
        background-color: #232323;
        box-shadow: 0 0 4px 0 #2d2d2d;
        -webkit-box-shadow: 0 0 4px 0 #2d2d2d;
    }
    .othercontent a, p {
        color: white;
    }
}