html {
    font-size: 18px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

p {
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
}

::-moz-selection { 
    background: #2799ea; 
    color: #fff;
}
::selection { 
    background: #2799ea; 
    color: #fff;
}

.main-title h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
    margin-top: 0;
    font-weight: 300;
}

.text a {
    color: #2799ea;  
    font-weight: 700;
    text-decoration: none;
}

.text a:hover, 
.text a:active,
.text a:focus {
    text-decoration: underline;  
}

.dm-content {
    width: 100%;
    overflow: hidden;
}

.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.head {
    padding: 1.5rem 15px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.head .logo img {
    border-radius: 100%;
}

.menu a {
    color: #2799ea;
    font-weight: 700;
    text-decoration: none;
    margin-left: 3rem;
}

.menu a:hover, 
.menu a:focus, 
.menu a:active{
    text-decoration: underline;
}

.image-large {
    margin: 2.5rem 0;
}

.text-center {
    text-align: center!important;
}

.d-block {
    display: block!important;
}

footer .container{
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
}

footer .container span {
    font-weight: 500;
    font-size: 0.85rem;
    
}

footer .container span.made-in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .container span.made-in svg {
    height: 20px;
    margin: 0 10px;
    color: #2799ea;
}

.hide-mobile {
    display: inline-block;
}

.hide-desktop {
    display: none;
}

.alternate-title {
    font-weight: 500;
}

.collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
}

.collection a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 215, 149, 0.15);
}

.image-presentation {
    text-align: center;
}

@media (max-width: 578px) {
    .logo {
        width: 150px;
    }

    .main-title h1 {
        font-size: 1.7rem;
    }

    .menu {
        text-align: center;
        width: calc(100% - 150px);
    }

    .menu a {
        display: block;
        margin-left: 0rem;
    }

    .menu a:first-of-type {
        margin-bottom: 1rem;
    }

    .container {
        width: auto;
    }

    .hide-mobile {
        display: none;
    }
    
    .hide-desktop {
        display: block;
    }

    .collection {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
