/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
    /*
    Color palette
    #0a0324
    #210456
    #b915cc
    #f6287d
    #8de41c
    */
    --darker-purple: #0a0324;
    --dark-purple: #210456;
    --magenta: #b915cc;
    --hot-pink: #f6287d;
    --green: #8de41c;
}

@font-face {
  font-family: Comic-Sans; /* set name */
  src: url(ComicSans.ttf); /* url of the font */
  src: url('ComicSans.ttf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('ComicSans.ttf') format('tff'), /* Modern Browsers */
     url('ComicSans.ttf') format('truetype'), /* Safari, Android, iOS */
     url('ComicSans.ttf') format('truetype'); /* Legacy iOS */
}

body {
  background-color: var(--darker-purple);
  color: var(--hot-pink);
  font-family: Comic-Sans;
}

/*
    font stuff
*/

h1 {
    font-size: 50px;
}

p {
    font-size: 20px;
}

/*
    Under construction sign
*/

.UnderConstruction {
    margin-left: 100px;
    margin-right: 100px;
    background: #ffff00;
    
    border-radius: 40px;
    
    font-size: 50px;
    
    display: flex;
    justify-content: center;
}

.InnerUnderConstruction {
    width: 100%;
    height: 100%;

    border-radius: 20px;
    
    margin: 20px;

    background: #000000;
    
    display: flex;
    justify-content: center;
}

.Inner2UnderConstruction {
    width: 100%;
    height: 100px;
    
    border-radius: 20px;
    
    margin: 10px;

    background: #ffff00;
    
    display: flex;
    justify-content: center;
    align-items: center;
}






