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

html {
    height: 100%;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #7c3521;
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    height: 100%;
    &:active{
        background-color: #2e348a

    }
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    color: #f4f5ea;
    height: 100%;
}

section {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.logo {
    max-width: 100%;
    height: auto;
}

.logotypeWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.slogan {
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
}



.tilt {
    display: inline-block;
    transform: rotate(-18deg) translate(0.3em, -0.354em);
    margin-right: 11px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.desktop {
    margin: 0 auto;
    grid-template-rows: 1fr auto 1fr;
    height: 100%;
    padding: 0 20px;
    display: none;
    @media (min-width: 768px) {
        display: grid;
    }
}

.mobile {
    height: 100%;
    display: flex;
    @media (min-width: 768px) {
        display: none;
    }
}

.mobile-logo {
    height: 100%;
    width: auto;
}

.mobile-textWrapper {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.mobile-logotype {
    max-width: 130px;
    height: auto;
    margin-left: auto;
}

.slogan-mobile {
    font-size: 1.2rem;
    margin-top: auto;
    text-transform: uppercase;
    transform: rotate(18deg);
    text-align: center;
}