@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* REVIEW: variables */
:root{
  --main-bg-color: #6a89cc;
}
*{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /*font-family: 'Roboto', sans-serif;*/
  font-family: 'Lato', sans-serif;
  font-size: 20px;
}
a{
  text-decoration: none;
  color:white;
  font-style: italic;
  font-size: 1em;
}
a:hover{
  text-decoration: underline;
}
a#back{
  position: fixed;
  bottom:3%;
  right: 3%;
  color: white;
}
section p{
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
section{
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* REVIEW: footer */
footer{
  background-color: #0c2461;
  padding-top: 3%;
  padding-bottom: 3%;
}
footer h4{
  color: white;
  font-size: 3em;
  text-align: center;
  margin-bottom: 3%;
}
footer div#social_media{
  width: 40%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
footer div#social_media div{
  width: 100px;
  height: 100px;
  border-radius: 60px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0c2461;
}
footer div#social_media div:hover{
  width: 100px;
  height: 100px;
  border-radius: 60px;
  background-color: #bdc3c7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0c2461;
}
footer div#social_media div span{
  color: #7289da;
  background-color: #7289da;
}
footer div#text{
  margin-top: 3%;
  margin-bottom: 3%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color:white;
  text-align: center;
}
footer div#text p a{
  color:#bdc3c7;
  text-decoration: none;
}
footer div#text p a:hover{
  color:#fff;
  text-decoration: none;
}
/* REVIEW: end footer */
/* REVIEW: link */
a.more{
  margin-top: 1%;
  line-height:1em;
  letter-spacing:0.06em;
  font-family: 'Lato', sans-serif;
  font-weight:normal;
  font-size:16px;
  text-decoration:none;
  color:black;
  /*background:#231f20;*/
  background: white;
  display:inline-block;
  padding:15px 12px 15px 15px;
  transition:background 200ms;
  border-radius:4px;
}
a.more:hover {
  /*background:#cea052;*/
  background: rgb(178, 190, 195);
}
a.more:after {
  font-weight:300;
  content: ">";
  margin-left:20px;
  color:black;
  font-size:18px;
  vertical-align:middle;
  transition:color 200ms;
}
a.more:hover:after {
  color:#231f20;
}
a.discord{
  margin-top: 1%;
  line-height:1em;
  letter-spacing:0.06em;
  font-family: 'Lato', sans-serif;
  font-weight:normal;
  font-size:16px;
  text-decoration:none;
  color:white;
  /*background:#231f20;*/
  background: #7289da;
  display:inline-block;
  padding:15px 12px 15px 15px;
  transition:background 200ms;
  border-radius:4px;
}
a.discord:hover {
  /*background:#cea052;*/
  background: white;
  color:#7289da;
}
a.discord:after {
  font-weight:300;
  content: ">";
  margin-left:20px;
  color:white;
  font-size:18px;
  vertical-align:middle;
  transition:color 200ms;
}
a.discord:hover:after {
  color:#7289da;
}
/* REVIEW: end link */

/* REVIEW: debut contact */
.contact-section{
  margin: 0;
  padding: 0;
  padding: 40px 0;
}
.contact-section h1{
  text-align: center;
  color: #ddd;
}
.border{
  width: 100px;
  height: 10px;
  background: #34495e;
  margin: 0 auto;
}

.contact-form{
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
}

.contact-form-text{
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border: 0;
  background: #111;
  padding: 20px 40px;
  outline: none;
  color: #ddd;
  transition: 0.5s;
}
.contact-form-text:focus{
  box-shadow: 0 0 10px 4px #34495e;
}
textarea.contact-form-text{
  resize: none;
  height: 120px;
}
.contact-form-btn{
  float: right;
  border: 0;
  background: #34495e;
  color: #fff;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}
.contact-form-btn:hover{
  background: #2980b9;
}
::placeholder{
  color: white;
}
/* REVIEW: fin contact */
