
body {
  color: black;
	font-family: uni;
	letter-spacing: 1px;
	image-rendering: crisp-edges;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'header header header header header header'
    'left left midl midr right right'
    'footer footer footer footer footer footer';
    gap: 10px;
    background-color: white;
    padding: 10px;
    padding-top:7%;
}

h1{
   color:blue;
}

.popo {
  text-decoration-line:underline;
  background: blue;
  color: blue;
  
}
.popo:hover{
    background-color: blue;
    color: red;
}

.lol {
  margin-top: -26px;
  font-size:10px;
  grid-area: midl;
/*  border-width: 1px;
  border-color: white;
  border-style: inset;*/
}

/*.main{
	padding-top:3%;
	width: 100%;
	
}*/
* {
  margin: 0;
  box-sizing: border-box;
}



table, th, td {
  border: 1px /*solid*/;
  border-collapse: collapse;
  border-color: whitesmoke;
  vertical-align: top;
}


h2 {
	margin: 0;
	padding: 0;
	font-family: hibiya;
	text-align:center;
}


.banner{
  color:white;
  background:blue;
  -webkit-text-stroke: 1px white;
    animation: blonker 1.0s linear infinite;
  }

.txt{
width: 300px;
margin-top: -20px;
grid-area: midr;
margin-left:-5px;
}

.txt > h2{
  text-align:left;
  
  }
  
.txt > p{
  text-align:left;
  
  }
  
  
.braille{
	color: white;
	background: blue;
	font-size: 9px;
	line-height: 1.4;
	-webkit-text-stroke: 1px white;
	grid-area: left;
	width: fit-content;
}

.mech{
  text-align:left;
  padding-top:7%;
  color: blue;
  font-size: 10.5px;
}

.tegxt{
text-align: center;
color: blue;
margin:auto;
margin-bottom: 12px;
font-family: uni;
display: block;
line-height: 0.9;
letter-spacing: 0.5px;
-webkit-text-stroke: 1px blue;
grid-area: header;
}

p{
  box-sizing: border-box;
  font-size: 18px;
  
  }
  
.link a{
  text-align: left;
    display: block;
    width: 270px;
margin-left:-10px;
}


.wrapper {
  max-width: 650px;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 20s linear infinite;
  color:white;
  background-color:blue;
  -webkit-text-stroke: 1px white;
  
}




@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

a{
  text-decoration-line: none;
  color: blue;
  font-size: 17px;
}

a:hover{
  color: white;
  background-color:blue;
}

div{
  padding-left: 10px;
  }

.blink_me:hover {
  animation: blinker 0.7s linear infinite;
}

@keyframes blinker {
  40% {
    opacity: 0;
  }
}

@keyframes blonker {
  50% {
    opacity: 0.4;
    background-color:#FF007F;
  }
}

@font-face {
	font-family: "uni";
	src: url("/assets/uni.ttf");
}

@font-face {
	font-family: "hibiya";
	src: url("/assets/hibiya.ttf");
}

@media screen and (min-width: 601px) {
  .tegxt {
    font-size: 12px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  .tegxt {
    font-size: 9px;
    
  }
}

@media only screen and (max-width: 600px) {
  .tegxt {grid-area: 1 / span 6;}
  .braille {grid-area: 2 / span 6;}
  .txt {grid-area: 3 / span 6;
        padding-top:20px;
        width:100%;
        padding-left:20%;
        padding-right:20%;}
  .txt > h2{text-align:center;}
  .txt > p{text-align:center;}
  .link a{text-align:center;}
}