@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&display=swap');

*{
    font-family: 'Lugrasimo', cursive;
    margin: 0;
    padding: 0;
}

body{
    background-color: red;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

section{
    width: 70vw;
}

h1{
    font-size: 3rem;
}

.flash{
    animation: flashing .5s infinite;
}

iframe{
    width: auto;
    height: auto;
}

.hide{
    display: none;
}

@keyframes flashing {
    0% {opacity: 0%;}
    50% {opacity: 100%;}
    100% {opacity: 0%;}
  }
  
