/*
Colours:
#d7263d red Logo
#43bccd light blue      #1dcbcd
#473144 maroon color    #111c31
#ebdbc8 eggshell        #eeeeea
#0f8b8d teal ??         #0e6566
*/

@font-face {
    font-family: ltMuseum;
    src: url(fonts/LTMuseum-Black.ttf);
}

@font-face {
    font-family: ltMuseumBold;
    src: url(fonts/LTMuseum-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: ltMuseumItalic;
    src: url(fonts/LTMuseum-BlackItalic.ttf);
    font-style: italic;
}

@font-face {
    font-family: ltMuseumLight;
    src: url(fonts/LTMuseum-Light.ttf);
    font-weight: lighter;
}

* {
    margin: 0;
    padding: 0;
    /*border: 1px solid aliceblue;*/
}

body {
    background-color: #111c31;
    color: #111c31;
    font-family: ltMuseumLight, serif;
    list-style-position: inside;
}

a {
    color: #d7263d;
}

a:hover {
    background-color: #1dcbcd;
    color: #d7263d;
}

a.sm-icon:hover {
    background-color: #eeeeea;
    text-decoration: none;
    width: 35px;
    height: 35px;
    margin: 0px;
}

a.sm-icon:hover img {
    background-color: #1dcbcd;
}

.footer {
    width: 100%;
}

.header,
.footer {
    background-color: #d7263d;
}

.nav,
.copyright {
    background-color: #d7263d;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: bold;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
}

.nav a,
.copyright a,
.copyright p,
.copyright button {
    background-color: #d7263d;
    display: inline;
    color: #eeeeea;
    text-decoration: none;
    padding: 14px 16px;
}

.nav a:hover,
.nav a:active,
.copyright a:hover,
.copyright a:active {
    border-radius: 10px;
    box-shadow: 2px 2px #1dcbcd;
    text-decoration: underline;
    font-size: large;
}

.hero {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas:
        'tagline logo';
    align-items: center;
    }

.tagline {
    max-width: 450px;
    grid-area: tagline;
    font-size: xx-large;
    justify-self: center;
    display: grid;
    grid-template-areas: 
        'blades . .'
        '. break .'
        '. . barriers';
}

.tagline p {
    color: #d7263d;
    font-family: ltMuseum;
    font-weight: bold;
}

#blades {
    grid-area: blades;
}

#break {
    grid-area: break;
}

#barriers {
    grid-area: barriers;
}


.hero .logo {
    grid-area: logo;
}

.hero .logo img {
    padding-top: 20px;
    max-width: 450px;
    height: auto;
}

.about,
.offer,
.contact,
.gallery,
.attrib {
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    border: 1px solid #111c31;
}

.about {
    background-image: url(imgs/pexels-tima-miroshnichenko-6538947.jpg);
    
}

.offer {
    background-image: url(imgs/pexels-photo-9643417.jpeg);
}

.contact {
    background-image: url(imgs/duel.jpeg);
}

.content {
    background-color: #111c31;
    width:100%;
    padding: 50px 0;
    margin-bottom: 200px;
    min-height: 300px;;
}

.text {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    background-color: #eeeeea;
    border-radius: 15px;
    box-shadow: 2px 2px 5px #1dcbcd;
}

.sm-icon img {
    width: 32px;
    height: 32px;
    margin: 10px;
    padding: 6px;
}

.author {
    text-align: right;
    font-weight: bold;
}
