html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: "Inconsolata", monospace;
  background-color: hsla(0, 0%, 100%, 1);
  color: black;
  /* background: linear-gradient(90deg, rgba(239,232,228,1) 1%, rgba(246,219,161,1) 100%);
background: linear-gradient(90deg, rgba(239,232,228,1) 1%, rgba(161,206,246,1) 100%);
background: linear-gradient(90deg, rgba(221,248,245,1) 1%, rgba(177,217,252,1) 100%); */
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.nav-link {
  /* padding: 0.25rem 0; */
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 1rem;
  /* margin: 1%; */
  /* border-bottom: 0.25rem solid transparent; */
}
.nav-link:hover {
  color: white;
  padding-top: 0.25rem;
  border-bottom: 0.25rem solid transparent;
  border-bottom-color: rgba(71, 72, 76, 0.5);
}
.info {
  /* margin:0% 16% ; */
  text-align: center;
  font-weight: 600;
  font-size: larger;
  margin-bottom: 6%;
  /* display: flex;
align-items: center;
justify-content: center; */
}
.logo {
}
#navbar {
  /* background-color: beige !important; */
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
#jntua {
  margin-top: 10%;
  background-image: linear-gradient(rgba(25, 25, 25, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1664575197229-3bbebc281874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: 200vh;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
}
#jntua23 {
  margin-top: 1%;
  background-image: linear-gradient(rgba(25, 25, 25, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fGVkdWNhdGlvbiUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D");
  background-size: 200vh;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
}
.jntua,
.jntua23 {
  color: white;
  font-weight: bolder;
  margin-left: 2%;
  font-size: 13vw;
}
.navigationinfo,
.navigationinfo23 {
  margin-left: 2%;
  color: white;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5%;
}
.home,
.home23 {
  margin: 0% 5%;
  /* text-decoration: none; */
  color: black;
  background-color: white;
  padding: 2%;
  border: none;
  border: 2px solid white;
  border-radius: 5vw;
  font-weight: 600;
  /* border-radius: 50% ; */
}
.home:hover,
.home23:hover {
  color: rgb(21, 136, 224);
  text-decoration: none;
}
#home,
#home23 {
  color: rgb(21, 136, 224) !important;
}
.filesbegging {
  text-align: center;
  padding: 50px 0px 0px 0px;
  font-weight: 600;
}

.logo {
  color: black;
  text-align: center;
  margin: 2%;
  font-size: 15vw;
  font-family: "Montserrat", sans-serif;
  user-select: none;

  &:before,
  &:after {
    display: block;
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
  }
  &:after {
    color: #f0f;
    z-index: -2;
  }
  &:before {
    color: #0ff;
    z-index: -1;
  }
  &:hover {
    &:before {
      animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
    }
    &:after {
      animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both 5;
    }
  }
}

@media only screen and (max-width: 400px) {
  .glitch {
    font-size: 3em;
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
  }
  40% {
    transform: translate(-5px, -5px);
  }
  60% {
    transform: translate(5px, 5px);
  }
  80% {
    transform: translate(5px, -5px);
  }
  to {
    transform: translate(0);
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-12-2 23:37:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-12-2 23:41:39
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

#text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
#tracking-in-contract {
  /* -webkit-animation: tracking-in-contract 0.8s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
  animation: tracking-in-contract 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    backwards; */
  -webkit-animation: tracking-in-expand 2s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-12-2 23:45:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand-fwd
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
#tracking-in-expand-fwd {
  -webkit-animation: tracking-in-expand-fwd 0.8s
    cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
}
@media (max-width: 500px) {
  .logo {
    color: black;
    text-align: center;
    margin: 10% 2% 10% 2%;
    font-size: 15vw;
    font-family: "Montserrat", sans-serif;
    user-select: none;
  }
  .info {
    font-size: medium;
    margin: 0% 5%;
  }
  .jntua,
  .jntua23 {
    margin-left: 31%;
  }
  .navigationinfo,
  .navigationinfo23 {
    font-size: 5vw;
    margin: 0% 3%;
  }
  .space,.space23 {
    margin-bottom: 10%;
  }
  .home,
  .home23 {
    padding: 5% 5%;
    border-radius: 38px;
  }
  #jntua,
  #jntua23 {
    height: 44vh;
    background-size: cover;
  }
  .filesbegging {
    margin: 10%;
  }
  @keyframes glitch {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translate(-3px, 3px);
    }
    40% {
      transform: translate(-3px, -3px);
    }
    60% {
      transform: translate(3px, 3px);
    }
    80% {
      transform: translate(3px, -3px);
    }
    to {
      transform: translate(0);
    }
  }
  .container {
    margin-left: -5px;
  }
}
@media (500px <= width <= 1000px) {
  #jntua,
  #jntua23 {
    height: 60vh;
    background-size: cover;
  }
  .info {
    font-size: medium;
    margin: 0% 5%;
  }
  .filesbegging {
    margin: 5%;
  }
}

/* .footer{
width: 100%;
height: 20%;
color: white;
background-color: rgb(46, 45, 45);
}
.gmail{
width: 7%;
display: inline;
margin: 2%;
}
a{
margin: 2%;
} */
/* .intro{

} */
