/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 @font-face {
     font-family: 'nokia';
     src: url(/fonts/nokiafc22.ttf);
 }

 .blink {
  text-decoration: blink;
  color: #1c87c9;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
}

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #FF0000;    }
    49%{    color: #FF0000; }
    60%{    color: transparent; }
    99%{    color: #FF0000;  }
    100%{   color: #FF0000;    }
}


body {
  background: #97cba4;
}

 p {
  margin-top: 0em ;
  margin-bottom: 0em ;
  font-family: nokia;
}

.header {
  margin-left: 16px;
  padding-bottom:16px;
}

 .container {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-left: 16px;
 }

 .item {
 }

 #s33Text {
   font-size: .5em;
 }

 .sms {
   padding-bottom: 24px;
   line-height: .9em;
   font-size: 1.6em;
 }

 a {
  color: black;
  text-decoration: none; /* no underline */
}

 @media (max-width: 1000px) {
  .item {
    font-size: 0.8em;
  }

  #s33Text {
    font-size: .5em;
  }
}
