body * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

body {
    margin: 0;
    font-family: sans-serif;
}

#menu {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    justify-content: flex-end;
    align-items: center;
    background-color: #c0bdba;
    box-shadow: 0 0 10px rgba(0,0,0,.5)
}

.gblogo {
    max-width: 60px;
    margin-left: 10px;
    margin-right: auto;
    background-color: #fff;
    border-radius: 50%;
}

.usr-name {
    padding: 10px
}

.button {
    margin: 10px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #5c6366;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.signin {
    display: flex;
    align-items: center;
    padding: 1px;
    font-size: 14px;
    color: #444;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 1px 2px #0000002e;
    transition: all .1s cubic-bezier(0.01, 0.74, 0.18, 0.99);
}

.signin:hover {
    color: #fff;
    background-color: #4285F4
}

.signin:active {
    box-shadow: 0;
    transform: translateY(1px);
}

.signin img {
    max-width: 40px;
}

.signin span {
    padding: 10px 15px 10px 13px;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 2.1vw;
    color: #22211f;
    background-color: #c8c9cb;
    background-image: url('/app/gb-header-wide.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    margin-top: 100px;
    height: calc(100vh - 100px);
}

@media (min-width: 1366px) {
    #header {
        min-height: 45vw;
    }
}

h1 {
    font-size: 3vw
}

.slgn {
    font-size: 2rem
}

@media (max-width: 1366px) {
    #header {
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 2rem 2rem 6%;
        background-size: 120vw;
        background-position: 20% 62%;
        height: calc(100vw / 2.37);
    }
    
    h1 {
        margin: 10px 0;
        font-size: 2rem
    }
    
    .slgn {
        font-size: 1.2rem;
        text-shadow: 1px 1px 1px #d7d3d0;
    }
}

@media (max-width: 940px) {
    #header {
        background-size: 120vw;
        background-position: 0% 62%;
    }
}

@media (max-width: 810px) {
    #header {
        background-size: 130vw;
        background-position: 0% 62%;
    }
}

@media (max-width: 740px) {
    #header {
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 15px;
        background-size: cover;
        background-position: 50%;
        min-height: 350px;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .usr-name {
        display: none
    }
}

footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #22211f;
    padding: 5px;
    text-align: center;
    box-shadow: 0 -4px 22px -12px rgba(0,0,0,.5);
}

.fclm {
    margin: 5px 10px
}

.flnk {
    color: #fff;
    text-decoration: none;
    white-space: nowrap
}
.flnk:hover {
    text-decoration: underline
}
.flnk:not(:first-child)::before {
    content: '|';
    margin-right: 5px;
    text-decoration: none
}



#bgp {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: antiquewhite;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
}
#bgp.prel {
    visibility: visible;
    animation: 2.5s cubic-bezier(1, -0.1, 0.76, 1.08) fd forwards 1
}
@keyframes fd {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.guitar-bible-logo {
    fill: #fb643b
}
#guitar-bible-logo {
    will-change: transform;
    position: fixed;
    width: 100vw;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scale(.1);
}
.prel #guitar-bible-logo {
    visibility: visible;
    animation: 2.5s cubic-bezier(1, 0.04, 0.47, 1.27) lgz forwards 1
}
@keyframes lgz {
    0% {
        transform: scale(.1);
        visibility: visible;
        opacity: 0;
    }
    30% {
        opacity: 1;
        transform: scale(.12)
    }
    50% {
        opacity: 1;
        transform: scale(.12)
    }
    70% {
        opacity: 0;
        transform: scale(.3)
    }
}



.social {
    display: flex;
    align-items: center;
    justify-content: center
}
.lnk {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('https://guitarbible.app/app/logos.png');
    background-size: cover;
}
.lnk:not(:last-child) {
    margin-right: 10px
}
  
.ig {
    background-position-x: -20px
}
.yt {
    background-position-x: 40px
}
.tw {
    background-position-x: 20px
}

@media (max-width: 866px) {
    .fclm {
        margin: 10px
    }
    .lnk:not(:last-child) {
        margin-right: 30px
    }
}

@media (max-width: 736px) {
    .fclm {
        flex-basis: 100%
    }
    .fclm:first-child {
        margin-bottom: 0
    }
}


body {
    background-image: linear-gradient(to right, #d1ccc8, #d6d3ce);
}
#main {
    max-width: 1260px;
    margin: auto;
    padding: 0 30px
}
.row {
    margin: 120px 0
}
.row, .col {
    display: flex
}
.col {
    width: 50%;
    align-items: center;
    color: #3e3e3e;
    font-size: 2em;
    font-weight: 600;
}
.txt {
    padding: 60px
}
.col img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 40%);
}

.row:first-child img {
    border-radius: 90% 10% 75% 25% / 14% 59% 41% 86%;
}
.row:nth-child(2) img {
    border-radius: 6% 94% 4% 96% / 96% 5% 95% 4%;
}
.row:last-child img {
    border-radius: 65% 35% 92% 8% / 53% 34% 66% 47%;
}

@media (max-width: 800px) {
    .row {
        flex-wrap: wrap
    }
    .col {
        flex-basis: 100%
    }
    .row:nth-child(2) .col:first-child {
        order: 1
    }
    .txt {
        padding: 30px 0;
        text-align: center
    }
}