* {
    margin: 0;
	padding: 0;
	border: 0;
}

body {
    font-family: 'Roboto', 'Roboto Condensed', sans-serif;
    /* background-color: #FFEBCD; */
    background-color: #0d0c0b;
}

/* .background {
    min-height: 100%;
    min-width: 640px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: -1;
} */


ul {
    list-style: none;
}

h1 {
    text-align: center;
    color: #f7f3ed;
    visibility: hidden;
}

h2 {
    margin: 0;
    font-weight: 400; 
}

h2, .nav_head {
    font-family: 'Roboto', sans-serif;
    margin-top: 15px;
    margin-bottom: 15px;
}

a {
    color: inherit; 
    text-decoration: inherit;
  }

.site_frame__link:hover, .site_frame__link:visited {
    color: #525252;
}

p {
    font-family: 'Roboto Condensed', sans-serif;
}

main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0% 10% 3% 10%;
    min-height: calc(100vh - 40px);
}

.site_frame {
    width: 30%;
    margin-top: 5%;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: #f7f3ed;
    border-radius: 5px;
}

.site_frame__preview, .site_frame__name, .site_frame__descr {
    width: 90%;
    align-self: center;
    text-align: center;
}

.site_frame__path {
    font-weight: 300;
}

.header, .footer {
    background-color: #525252;
    color: #f7f3ed;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
}

.footer {
    position: relative;
    bottom: 0;
}

.wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.header__list, .footer__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    height: 40px;
}

.header__list__link {
    font-size: 16px;
}

.nav_head {
    font-size: 25px;
    font-weight: bold;
}

.tg-svg {
	min-width: 3em;
}

@media screen and (max-width: 575px) {
    main {
      flex-direction: column;
      margin: 0% 0% 0% 0%;
      align-items: center;
    }

    h1 {
        font-size: 1px;
    }

    .header {
        position: sticky;
    }

    .site_frame {
        width: 80%;
        margin-top: 5%;
        display: flex;
        flex-direction: column; 
        align-items: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }
  }

