body {
    font-family: "Poppins", sans-serif;
}

.logo-header {
    width: 6rem;
}

@media (min-width: 1024px) {
    .logo-header {
        width: 8rem;
    }
}

.button-primary {
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.button-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #014468;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.button-primary:hover::before,
.button-primary:focus::before {
    transform: translateX(0);
}

.button-secondary {
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.button-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffd964;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.button-secondary:hover::before,
.button-secondary:focus::before {
    transform: translateX(0);
}

.star-footer {
    background-image: url(img/icon-footer.png);
    background-repeat: no-repeat;
    background-size: auto 200px;
    background-position: right top 30px;
}

.blog-container {
    background-image: url(img/bg-blog.svg);
    background-repeat: no-repeat;
    background-size: auto 400px;
    background-position: left center;
}

@media screen and (max-width: 767px) {
    .star-footer {
        background-image: none;
    }
}

ul {
    list-style: disc;
}

li {
    list-style-type: disc;
    margin-left: 1rem;
}

.ql-align-center {
    text-align: center;
}
