@font-face {
  font-family: "W95";
  src: url("./../../assets/W95font.otf") format("truetype")
}

html,
body {
  height: 100%;
}

.main-container {
  flex: 1;
  gap: 1rem;
  margin-bottom: 4rem;
}

.widget {
  grid-area: widget;
}

.addon {
  grid-area: addon;
}

.content {
  padding-top: 1rem;
}

.content-row {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.head {
  margin-left: auto;
  margin-right: auto;
}

.header-content {
  align-content: center;
}

.hearder-info {
  display: flex;
  align-items: center;
  border-style: groove;
  padding: 1rem;
}

body {
  background-image: url("../../assets/wallpapers/Tulips.jpg");
  display: flex;
  flex-direction: column;
}

cool-cat {
  width: 100%;
}

.file-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.file {
  display: flex;
  flex-direction: column;
  align-items: center;

  flex: 1 0 100px;

  margin-inline-start: 1rem;
  margin-inline-end: 1rem;
}

.file-icon {
  width: 50px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.file-name {
  text-align: center;
}

.file-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badges-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  margin-inline-start: 1rem;
  margin-inline-end: 1rem;
}

.badges-list img {
  object-fit: cover;
  display: block;
}

.badge {
  height: 30px;
  overflow: hidden;
}


.start-menu {
  padding-top: 1rem;
}

.start-menu-window {
  display: flex;

  height: 40px;

  background-color: #c3c3c3;
  box-shadow: 3px 3px 1px #000000;

  border-top: #fdffff;
  border-top-style: groove;

  padding: 2px;
}

.start-menu-start-button {
  background-color: #c3c3c3;
  color: black;
  border: #fdffff;
}

.start-menu-collapsed-app {
  background-color: #c3c3c3;
  color: black;
  border: #fdffff;
}

.start-menu-collapsed-app-button {
  background-color: #e7e7e7;
  border: #fdffff;
  border-style: groove;
  border-width: 2px;

  font-size: 24px;
  font-family: "W95";
  text-decoration: none;

  box-shadow: 2px 2px 1px black;
}

.start-menu-collapsed-app-button:hover {
  background-color: #fdffff;
  cursor: pointer
}

.start-button {
  background-color: #e7e7e7;
  border: #fdffff;
  border-style: groove;
  border-width: 2px;

  font-size: 24px;
  font-family: "W95";
  text-decoration: none;

  box-shadow: 2px 2px 1px black;
}

.start-button:hover {
  background-color: #fdffff;
  cursor: pointer;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

.page-link {
  text-decoration: none;
}

.main-content {
  display: flex;
  align-items: center;


}

.main-content-photo {
  border: #000000;
  border-style: dotted;
  border-width: 1px;
  /* box-shadow: 3px 3px 1px black; */
}

.photo-name {
  text-align: center;
}

.main-content-text {
  padding: 1rem;
}

.snow-home {
  height: 120px;
}

/* All the default CSS for the postcard. */
/* DON'T EDIT! This is for reference. */
article.val-postcard {
  display: block;
  margin: auto;
  aspect-ratio: 6 / 4 !important;
  width: 400px;
  box-sizing: border-box;
  transform: rotateY(0deg);
  font-size: 20px;
}

article.val-postcard:hover>.back,
article.val-postcard:focus>.back {
  transform: rotateY(0deg);
}

article.val-postcard:hover>.front,
article.val-postcard:focus>.front {
  transform: rotateY(180deg);
}

article.val-postcard>* {
  z-index: 1;
  margin: 0;
  perspective: 600px;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

article.duplex::before,
article.duplex::after {
  display: block;
  z-index: -1;
}

article.val-postcard .front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;

  background: pink;
}

article.val-postcard .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transform: rotateY(180deg);

  display: grid;
  grid-template-columns: 55% 20% 25%;
  grid-template-rows: 25% 1fr;
  grid-template-areas: "msg x stamp"
    "msg adr adr";

  background: ivory;
}

article.val-postcard .message,
article.val-postcard .address,
article.val-postcard .stamp {
  width: 100%;
  height: 100%;
}

article.val-postcard .message {
  grid-area: msg;
  border-right: solid #00000044 2px;
}

article.val-postcard .stamp {
  grid-area: stamp;
  display: flex;
  justify-content: end;
}

article.val-postcard .stamp img {
  display: block;
  image-rendering: pixelated;
  height: 100%;
  margin: 5px 5px;
}

img {
  width: 250px;
}

article.val-postcard .address {
  grid-area: adr;
  padding-left: 5px;
}