/*site colors
bg color #130d30
2nd bg color #230646;
titile text color #eb00dd
other text color rgba(235, 0, 221, 0.8)
accent color #ffa438
outline: 1px solid red;
*/

/*font-family
font-family: 'Iceland', cursive;
font-family: 'Press Start 2P', cursive;
font-family: 'Fieldguide', cursive;
*/

/*block-model*/
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  
}
:root {
  --primary-text-color: rgba(235, 0, 221, 0.8);
  --titile-text-color: #eb00dd;
  --accent-text-color: #ffa438;
  --primary-bg-color: #130d30;
  --seconary-bg-color: #230646;
  --merchset-gap: 20px;
  --card-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); 
}

/*body style and elements*/
body {
  margin: 0;
  background-color: black;
  background: linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
  background-repeat: no-repeat;
  font-family: 'Iceland', cursive;
  font-size: 30px;
  color: var(--primary-text-color);
  letter-spacing: -0.015em;
}
h1,h2,h3,h4{
  margin: 0;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
  font-size: 30px;
  line-height: 1.2em;
}
ul {
   padding-inline-start: 0;
   margin:0%
   }
.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  background-color: var(--primary-bg-color);
  width:1440px;
  margin:0 auto;
  padding: 0 20px;
}


.container.padding
{padding-top: 3opx;
padding-bottom: 30px;
}
img{
  display: block;
  max-width: 100%;
  height: auto;
}
/*header*/
.page-header{
  background:transparent;
}
.navigation {
  width:1440px;
  padding:0 20px;
  margin: 0 auto;
  display: flex;
  align-self:center;
  height: 150px;
background-color: var(--seconary-bg-color);
}
.logotype {
  display: flex;
  align-items: center;
}
.logoimage {
  display: block;
  width: 100px;
  height: 100px;
  
  }
a.logo {
  display: inline-block;
  color: var(--accent-text-color);
  font-family: 'Fieldguide', cursive;
  font-size: 46px;
  line-height: 1.6em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  margin-left: auto;
}
li.linkbox {
  padding:0px
}
.main-nav .link-box + .link-box{
  margin-left: 5px;
}
.main-nav .link {
  display: block;
  min-width: 170px;
  padding: 5px;
  border-radius: 6px;
  color: var(--primary-text-color);
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
}
.main-nav .link:hover,
.main-nav .link:focus {
  color: var(--accent-text-color);
}
.main-nav .link.current {
  color: var(--accent-text-color);
}
.auth-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-left: auto;
}
.auth-nav .link-box + .link-box {
  margin-left: 5px;
}
.button {
display:inline-block;
color: var(--titile-text-color);
background-color: var(--primary-bg-color);
line-height: 1.2em;
text-transform: uppercase;
text-align: center;
padding: 5px;
border:1px solid transparent;
border-radius: 6px;
min-width: 155px;
}
.button.primary {
  color: var(--primary-bg-color);
  background-color: var(--accent-text-color);
}
.button.second {
  color: var(--accent-text-color);
  background-color: var(--primary-bg-color);
  border-color:  #ffa438;
}

/*hero*/
.hero{
  text-align: center;
  

}

.container-hero {
  background-color: var(--primary-bg-color);
  width:1440px;
  margin:0 auto;
  padding-bottom: 0px;
}

h1.hero-title {
  display: block;
  margin-bottom: 10px;
  font-family: 'Iceland', cursive;
   font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--titile-text-color);
}
.herobox {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 618px;
  background-color: #eb00dd;
  background-image: linear-gradient(180deg, rgba(30,19,70,1) 0%, rgba(38,21,52,0) 34%), url(../images/cybercitylogo21440x618.png);
  background-repeat: no-repeat;
  background-size: cover;
  
}
.logobutton{
  margin-top: 30px;
  display: block;
  padding: 0;
  background: none;
  border:none;
}
.mainlogo {
  width: 500px;
  fill:var(--accent-text-color);
}

.mainlogo:hover {
-webkit-filter: drop-shadow( 0px 3px 2px var(--accent-text-color));
filter: drop-shadow( 0px 3px 2px var(--accent-text-color) );
transition:5000ms;
}

/*section styles*/

.section {
  padding-top: 100px;
}
.section.no-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
.section-title {
  margin:0 0 60px 0;
  color: var(--titile-text-color);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
}
.section-description{
  margin-bottom: 60px;
  font-size: 48px;
}
/*features section*/
.features {
  display: flex;
  flex-wrap: wrap;
}
.features .item 
{
  width: 640px;
  margin-bottom:60px;
}
.features .item:nth-child(even){
  margin-left: auto;
}
.features .title {
  margin-bottom: 24px;
  color: var(--titile-text-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: left;
}
.features p{
 margin-bottom: 32px;
}

/*dovestypes section*/
.dovetypes .list{
  display: flex;
}
.dovetypes .title {
  margin-bottom: 24px;
  color: var(--titile-text-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
}
.dovetypes p{
 margin-bottom: 32px;
}
.dovetypes > .item
{
  align-items: center;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--primary-bg-color);
}
.dovetypes > .item:nth-child(2n){
  flex-direction: row-reverse;
 
}
.dovetypes > .item:nth-child(2n+1){
  background: var(--seconary-bg-color);
}
.dovetypes > .item:nth-child(2n) .content {
  margin-right: 100px;
}
.dovetypes > .item:nth-child(2n+1) .content {
  margin-left: 100px;
}
/*buy Section*/
.container.flex
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.container > .buycall
{
  flex-basis: 800px;
  font-size: 48px;
}
.buy-nav{
  display: flex;
  width: 335px;
  justify-content: space-evenly;
}
/*merch section*/
.merch {
  display: flex;
  flex-wrap: wrap;
  width: 1400px;
  
}
.merch .item {
flex-basis: calc((100% - 20px)/3); 
margin-right:10px;
margin-bottom: 10px;
}
.merch .item:nth-child(3n) {
  margin-right: 0;
}


/*footer*/
.footer {
  background:var(--seconary-bg-color);
}
.fnavigation {
  width:1440px;
  padding:0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-self:center;
  height: 200px;
  
}
.social-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  
}

.social-nav button {
 display: block;
 width: 72px; 
 height: 72px;
 padding: 0;
 border: none;
 background-color: transparent;
 background-repeat: no-repeat;
 background-size: cover;
}

.socialbutton {
  padding: 0;
  margin: 0;
  border: none;
}
.button-icon {
  width: 48px;
  height: 48px;
  fill:var(--primary-text-color)
  
}
.button-icon:hover {
  fill:var(--accent-text-color)
}

.social-nav .link-box + .link-box{
  margin-left: 10px;
}

.footer-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-width: 450px;
}
.footer-nav .link {
  font-size: 30px;
  display: block;
  min-width: 100px;
  padding: 1px;
  color: var(--primary-text-color);
  line-height: 1.2em;
  text-align: center;
}
.footer-nav .link-box + .link-box{
  margin-left: 10px;
}
.footer-nav .link:hover {
  color:var(--accent-text-color);
}
.copyright
{
  display: flex;
  align-items: center;
  min-width: 450px;
  text-align: center;
}

/*Tools*/
.left
{text-align: left;}


