@import url('https://fonts.cdnfonts.com/css/groupe');
@import url('https://fonts.cdnfonts.com/css/luna-bar');

*{
  /*border: 1px solid red;*/
  padding: 0;
  margin: 0;
}
body{
  background: #202430;
  font-family: 'GROUPE', sans-serif;
  overflow-y: hidden;
}

header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#title{
  margin-left: 10px;
  margin-top: 10px;
  z-index: 100;
}

#imageA{
  background: transparent;
  border: 1px solid #202430;
  width: 18.6vw;
  border-radius: 50px;
  z-index: 200;
}

#image{
  padding: 10px;
  background: transparent;
  border: 1px solid #ffd6a4;
  width: 13vw;
  border-radius: 50px;
  z-index: 200;
}

.image{
  height: 50px;
  width: 50px;
  background-image: url('Back.png');
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}

header h1{
  font-family:"Luna Bar", sans-serif;
  color: #fff;
  font-size: 13px;
}

.cont {
	height: 27px;
	width: 55px;
	background: #ffd6a4;
	border-radius: 80px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	margin-right: 10px;
}

input {
	display: none;
}

#btn:checked ~ .cont {
	background: #202430;
	box-shadow: 0 0 0 1200px #ffd6a4;
}

.cont:before {
	content: "";
	margin: 0 5px;
	height: 22px;
	width: 20px;
	background: #202430;
	border-radius: 80px;
	transition: 0.5s;
}

#btn:checked ~ .cont:before {
	transform: translateX(112%);
	background: #ffd6a4;
}

main{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;  
  margin-bottom: 180px;
  height: 60vh;
}

.borderbtn{
  width: 70vw;
  font-size: 20px;
  background: transparent;
  border: 1px solid #202430;
  color: #fff;
  border-radius: 7px;
  margin-top: 30px;
}

.borderbtn:hover{
  background: #ffd6a4;
  color: #202430;
}

.btnA{
  padding: 20px;
  width: 70vw;
  font-size: 20px;
  background: transparent;
  border: 1px solid #ffd6a4;
  color: #fff;
  border-radius: 7px;
}

.btnA:hover{
  background: #ffd6a4;
  color: #202430;
}

footer{
  background: #ffd6a4;
  border: 1px solid #ffd6a4;
  height: 50px;
  width: 100%;
}
