body {
  background: radial-gradient(
    circle farthest-corner at top right,
    darkslateblue,
    black
  );
  min-height: 100vh;
  color: white;
  font-family: "Roboto", sans-serif;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
}
@media (max-width: 500px) {
  body {
    flex-direction: column;
  }
}

a {
  color: lightgray;
}
a:hover {
  color: gold !important;
}
a:visited {
  color: #aa9739;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 500px) {
  main {
    align-items: start;
    box-sizing: border-box;
    padding-right: 50px;
    width: 50%;
    text-align: end;
    align-items: end;
  }
}

.link-icon svg {
  width: 25px;
  position: absolute;
  top: 10px;
  stroke: black;
}
.link-icon svg path {
  transition: 0.5s;
}

#linkedinSVG {
  right: 50px;
  stroke-width: 0;
}
#linkedinSVG:hover {
  stroke-width: 1;
  stroke: #0073b0;
  fill: white;
}

#gitlabIcon {
  right: 10px;
  stroke-width: 7;
}
#gitlabIcon:hover {
  stroke: white;
}
#gitlabIcon:hover .inner {
  fill: #e24329;
}
#gitlabIcon:hover .outer {
  fill: #fca326;
}
#gitlabIcon:hover .middle {
  fill: #fc6d26;
}
#gitlabIcon .inner {
  fill: black;
}
#gitlabIcon .outer {
  fill: white;
}
#gitlabIcon .middle {
  fill: slategray;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#monitorContainer {
  margin-top: 20px;
  position: relative;
}
@media (min-width: 500px) {
  #monitorContainer {
    width: 50%;
  }
}

#monitorImage .primary {
  fill: #333;
}
#monitorImage .bg {
  fill: #fff;
}
#monitorImage .secondary {
  fill: url(#grad1);
}

#grad1 {
  --gradStart: #b7bbbd;
  --gradMiddle: #8e9597;
  --gradStop: #b3c1c5;
}

.inner-screen {
  margin: 0;
  overflow: hidden;
  position: absolute;
  left: 5%;
  width: 90%;
  top: 13%;
  height: 44%;
  border-radius: 15px;
}

#introContainer {
  background: url("../img/julie-portrait-ecran.jpg");
  display: flex;
}
@media (min-width: 500px) {
  #introContainer {
    background-size: cover;
  }
}
@media (max-width: 500px) {
  #introContainer {
    justify-content: center;
  }
}

#intro {
  color: darkslateblue;
  width: 80%;
  font-size: 6vw;
  text-align: center;
  transition: 2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 500px) {
  #intro {
    width: 50%;
    font-size: 3vw;
  }
}

#wink {
  opacity: 0;
  font-size: x-large;
  color: darkslateblue;
  margin: 0;
  position: absolute;
  top: 38%;
  right: 11%;
  animation-name: tumble;
  animation-delay: 17s;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes tumble {
  0% {
    opacity: 0;
    top: 38%;
    right: 11%;
    transform: rotate(0deg);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 27%;
    right: 6%;
    transform: rotate(180deg);
  }
}

.selectable {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .selectable {
    justify-content: flex-end;
  }
}

.selectable a {
  position: relative;
}

.selectable.selected a::after {
  content: "";
  position: absolute;
  right: -1.5em;
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../img/icones/eye.svg") no-repeat;
}

.selectable img {
  height: 1.5em;
  border-radius: 3px;
  opacity: 0.15;
  transition: opacity 0.1s;
}

.selectable.selected img {
  opacity: 1;
  filter: drop-shadow(0 0 1px white);
}

.selectable > * {
  margin: 2px;
}

#preview img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
