/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    font-family: "Questrial", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: #713738;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 992px) {
    body {
        font-size: 22px;
    }
}

/* Layout */
main {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

@media (min-width: 768px) {
    main {
        padding: 60px 0;
    }
}

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
        gap: 60px;
    }
}

.logo {
    max-width: 200px;
    width: 100%;
    fill: #713738;
}

@media (min-width: 768px) {
    .logo {
        max-width: 280px;
    }
}

/* Content */
.content {
    max-width: 800px;
    width: 100%;
}

.content p {
    margin-bottom: 30px;
}

/* Button */
.c-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #713738;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.c-button:hover {
    opacity: 0.8;
}

.c-button span {
    border-bottom: 1px solid currentColor;
    text-transform: uppercase;
    font-size: 16px;
}

.c-button svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.c-button:hover svg {
    transform: translateX(25%);
}

.c-button svg path:last-child {
    fill: #F56343;
}
