@charset "utf-8";
/*

Template name: archery;
author: jun-design;

*/

*{
  margin: 0;
  padding: 0;
}

header{
  background-color: #070628;
  margin-top: 32px;
  margin-bottom: 40px;
}

.content{
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

h1{
  color: #fff;
  font-size: 36px;
  padding: 18px;
  height: 48px;
}

#root{
  width: 360px;
  height: 360px;
  box-sizing: border-box;
  border:1px black solid;
  background-image: url(img/target.jpg);
  background-position: center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.target{
  position:relative;
}

.target::before{
  content:"";
  position:absolute;
  top:315px;
  left:0;
  display: block;
  height:2px;
  width:360px;
  background-color: #666666;
}
.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}



footer{
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
}

.ff-default {
  width: 40%;
}

@media screen and (max-width: 768px){
  .ff-default{
    width: 100%;
  }
}

