/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face { font-family: "Fixedsys"; src: url("fixedsys_font.ttf"); }
@font-face { font-family: "CivitypeFG"; src: url("civitype.ttf"); }

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  color: white;
  text-align: center;
  font-family: "Fixedsys";
}
h1 {
  font-size: 30px;
}

h2 {
  font-size: 20px;
}

p {
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: white;
  background-color: transparent;
}

a:visited {
  color: white;
  background-color: transparent;
}

a:hover {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: rgb(74, 74, 255);
  background-color: transparent;
  text-decoration: underline;
}

.bgteal {
  background-image: url("teal_background.png");
}

.bgblack {
  background-color: black;
}

.leftAlignedText {
  text-align: left;
}

.bgGradient {
  background-image: linear-gradient(45deg, rgb(22, 22, 22), rgb(98, 98, 98), rgb(22, 22, 22));
  background-size: cover;
  background-attachment: fixed;
  text-align: left;
}

.blog {
  text-align: left;
  max-width: 300px;
  max-height: 300px;
  overflow: auto;
  background-color: white;
  color: rgb(77, 77, 77);
  border: ridge;
  border-width: 10px;
  border-color: black;
}

.fontCivitype {
  font-family: "CivitypeFG";
}

.bgFriendWorld {
  background-image: linear-gradient(45deg, rgb(40, 40, 40), rgb(190, 190, 190), rgb(40, 40, 40));
  color: black;
}

.shiny {
  display: inline-block;
  max-height: 720px;
  position: relative;
  right: 630px;
}

.container {
 position: relative; 
}

.computerWorld {
  position: absolute;
  left: 30%;
  top: 5%;
}

.comfortablyCold {
  position: absolute;
  left: 50%;
  top: 30%;
}

.back1 {
  position: absolute;
  left: 700px;
  top: 650px;
  font-size: 30px;
}

a.FriendWorld:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

a.FriendWorld:active {
  color: rgb(74, 74, 74);
  background-color: transparent;
  text-decoration: underline;
}