* {
    box-sizing: border-box;
}
body, html {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 10px;
}
body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    min-height: 100vh;
    position: relative;
}

.navbar > .btn-cancel {
    display: none;
}
.navbar.nav-hidden > * {
    display: none !important;
}
.navbar.nav-hidden > .btn-cancel {
    display: block !important;
    margin: 0 auto;
    min-width: 200px;
}

.navbar-brand.abs {
    margin: 0;
    padding: 0;
}
.navbar-brand.abs img {
    display: block;
    margin: 0 auto;
    height: 60px;
}

.title {
    font-size: 3.2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.title .logo {
    max-width: 80px;
    min-width: 80px;
}
.title .logo img {
    display: block;
    border: 0;
    margin: 0 auto;
    max-width: 64px;
    min-width: 64px;
}
.title-left {
    flex: 1;
    max-width: 250px;
    min-width: 250px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.title-right {
    max-width: 100%;
    min-width: calc(100% - 330px);
    text-align: left;
    font-size: 1.6rem;
    line-height: 20px;
    padding-left: 1rem;
    box-sizing: border-box;
}

.title .title-left  a {
    font-weight: bold;
    color: #212529;
    text-decoration: none;
}

.title-right ul, .breadcrumb ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: 0;
}
.title-right li, .breadcrumb li {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
}
.title-right li {
    margin: 0 1rem;
}
.title-right li a {
    color: #5561d9;
}

nav.navbar {
    padding: 0;
    height: 80px;
    background: #ffffff;
    position: relative;
}
nav.navbar::after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ed505b, #5561d9);
}

.text-primary {
    color: #5561d9!important;
}
.text-secondary {
    color: #ed505b!important;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: bold;
}

.search {
    display: flex;
    flex-direction: column;
    padding: 9vh 3.2rem;
    background: linear-gradient(45deg, rgb(252, 229, 230), rgb(230, 231, 249));
    border-radius: 2rem;
}
.search-title {
    max-width: 45vw;
    margin: 0px auto 3.2rem;
    text-align: center;
    font-weight: bold;
}
.search-fields {
    min-width: 90%;
    margin: 0 auto;
}

.search-result {
    text-align: center;
    max-width: 45vw;
    margin: 0px auto 2.6rem;
    font-weight: normal;
    font-size: calc(0.75rem + .9vw);
}
.search-result strong {
    font-size: calc(1rem + .9vw);
    color: #5561d9!important;
}

label {
    font-weight: 400;
    line-height: 1.5;
    border-width: 0;
    border-color: rgb(206, 212, 218);
    border-radius: 1.2rem;
    font-size: calc(1.325rem + .9vw);
    position: relative;
    cursor: pointer;
}

input[type="search"] {
    font-size: calc(1.325rem + .9vw);
    position: relative;
    font-weight: 400;
    line-height: 1.5;
    border-width: 0;
    border-color: rgb(206, 212, 218);
    border-radius: 1.2rem;
    appearance: none;
    outline: none;
    outline-offset: -2px;
    padding: 1.6rem 2.25rem 1.6rem 1.6rem;
    width: 100%;
}
input[type="search"]:focus {
    box-shadow: rgba(85, 97, 217, .25) 0 0 0 .25rem;
}

.homeCard-container {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2rem;
    min-height: 260px;
}

footer {
    text-align: center;
    padding: 0 10px;
    font-size: 1.1rem;
}

.bg-light {
    background-color: rgb(239, 241, 243) !important;
}
.text-dark {
    color: rgb(33, 37, 41) !important;
}

h2 {
    font-size: 3.2rem;
}
p {
    font-size: 1.6rem;
}

.search-already {
    text-align: center;
    font-size: 1.15rem;
}
.search-already > span {
    transition: all .5s ease;
    font-weight: bold;
    font-size: 1.4rem;
}

.small {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(33, 37, 41);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: calc(1.285rem + 0.42vw);
    border-radius: 0.3rem;
    transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.btn-primary {
    color: rgb(255, 255, 255);
    background-color: rgb(85, 97, 217);
    border-color: rgb(85, 97, 217);
    box-shadow: rgb(0 0 0 / 8%) 0px 0.3rem 0.25rem;
}

.twitter-mobile {
    display: none;
    text-align: center;
}

.spinner {
    animation: spin infinite 1.5s linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

main {
    max-width: 1125px;
    min-height: calc(100vh - 320px);
    margin: 0 auto;
    background: linear-gradient(45deg, rgb(252, 229, 230), rgb(230, 231, 249));
    border-radius: 2rem;
    margin-top: 3rem;
    padding: 3rem 136px;
}

.breadcrumb {
    font-size: 1.5rem;
}
.breadcrumb a {
    text-decoration: none;
    color: #5561d9;
}
.breadcrumb span {
    color: #ed505b;
    text-decoration: underline;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb li::after {
    content: ">";
}
.breadcrumb li:last-child::after {
    content: "";
}
main h1 {
    text-align: center;
    display: block;
}
main h1 span {
    color: #ed505b;
}

main time {
    display: block;
    font-size: 1.3rem;
    margin: 1rem 0;
}

main .post-body {
    line-height: 1.5;
}
main .post-body p {
    font-size: 1.8rem;
}

main .post-body blockquote {
    border: 1px rgb(207, 217, 222) solid;
    border-radius: 12px;
    max-width: 550px;
    margin: 0 auto;
    padding: 12px 16px;
    background: white;
}


.post-archive-link {
    text-decoration: none;
}
article.post-archive {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
article.post-archive > .post-archive-img {
    max-width: 160px;
    min-width: 160px;
}
article.post-archive > .post-archive-img > img {
    display: block;
    width: 160px;
    height: 90px;
    border: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

article.post-archive > .post-archive-title {
    max-width: calc(100% - 180px);
    min-width: calc(100% - 180px);
}
article.post-archive > .post-archive-title > h2 {
    font-size: 1.75rem;
    text-decoration: none;
    color: #212529;
    margin: 0;
}
article.post-archive > .post-archive-title > h2 > span {
    color: #ed505b;
}
article.post-archive > .post-archive-title > time {
    font-size: 1.3rem;
    margin: .5rem 0;
    color: #212529;
}

.post-intro {
    font-weight: bold;
}

.twitter-tweet {
    margin-left: auto;
    margin-right: auto;
}
.instagram-media {
    margin-left: auto !important;
    margin-right: auto !important;
}

footer::before {
    content: " ";
    position: absolute;
    left: 0;
    top: -4px;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ed505b, #5561d9);
}

footer {
    background: #1b1c2c;
    position: relative;
    margin: 6rem 0 0 0;
    width: 100%;
    height: 160px;
}

@media screen and (max-width: 1023px) {
    .search {
        padding: 4vh 2.4rem;
    }
    .search-title {
        max-width: 100%;
    }
    h1 {
        font-size: 3.2rem;
    }
    .search-result {
        max-width: 100%;
        font-size: 1.4rem;
    }
    .search-result strong {
        font-size: 2rem;
    }
    .title > div.title-right {
        display: none;
    }
    .twitter-mobile {
        display: block;
        margin-top: 20px;
    }

    main {
        padding: 10px;
    }

    article.post-archive > .post-archive-title {
        max-width: calc(100% - 130px);
    }
    article.post-archive > .post-archive-img {
        max-width: 120px;
        min-width: 120px;
    }
    article.post-archive > .post-archive-img > img {
        display: block;
        width: 120px;
        height: 68px;
        border: 0;
        object-fit: cover;
        object-position: center;
    }

}
