@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;700&display=swap');

:root {
  --colour-background: #091b28;
  --colour-pink: #FF0A78;
  --colour-blue: #6DB1BF;
  --colour-primary-white: #F4F7F5;
  --colour-secondary-white: #DCDEDD;
  --colour-tertiary-white: #C3C6C4;

  --container-padding: 0 30px;
}

*, 
::before,
::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  background-color: var(--colour-background);
  color: var(--colour-primary-white);
}

a {
  text-decoration: none;
}

s {
  color: inherit;
}

.container {
  margin: 0 auto;
  min-height: 100vh;
  max-width: 900px;
  padding: var(--container-padding);
}

.general-links {
  color: inherit;
  text-decoration: underline var(--colour-pink);
  transition: all .5s;
}

.general-links:hover,
.general-links:active {
  text-decoration: none;
  text-shadow: 0 0 5px rgba(217, 183, 252, 0.589),
    0 0 5px rgba(141, 173, 253, 0.829);
}

.solidarity-message {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  height: 50px;
  background-color: black;
  font-size: 30px;
}