@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: cyber;
  src: url(../sources/fonts/cyber.woff);
}
@font-face {
  font-family: typewriter;
  src: url(../sources/fonts/oldtypewriterregular.woff2);
}
body{
  font-family: sans-serif;
}
/* Make content area fill the entire browser window */
.fullscreen{
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #082f49;
  color: #facc15;
}
/* Center the content in the browser window */
.container{
  margin: auto;
  text-align: center;
}
.title{
  font-family: cyber;
  font-size: 2.8rem;
}
.avatar {
  width: 60%;
  border-radius: 50%;
}
.connectme{
  transition: all 200ms ease-in 20ms;
}
.connectme:hover{
  scale: 1.3;
}
.cont{
  font-family: typewriter;
  font-size: x-large;
  margin-top: 0px;
  margin-bottom: 0px;
}
.connectTable{
  display: inline-block;
  border-spacing: 20px;
}
.services{
  margin: 5px auto;

}
fieldset{
  text-align: left;
  display: flex;
  justify-content: space-evenly;
  border-radius: 3px;
}
legend{
  font-family: typewriter;
  font-size: 1.2rem;
}
.service{
  min-width: 75px;
  text-align: center;
  border: 1px solid #cfd8dc;
  border-radius: 5px;
  padding: 7px;
  transition: all 200ms ease-in 20ms;
}
.service:hover{
  background-color: #cfd8dc;
}
a:link, a:visited{
  color: #cfd8dc;
  text-underline-offset: 4px;
  transition: all 200ms ease-in 20ms;
}
a:hover{
  color: #082f49;
}
