@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=League+Script&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
.fancy-header {
  font-family: "League Script", cursive;
  font-weight: 400;
  font-style: normal;
}
:root {
    --background-colour: rgb(250, 250, 240);
    --header-colour: #ff69b4;
    --text-colour: #3CB371;
    --svg: #ffbede;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--background-colour);
    color: var(--header-colour);
}

h1 {
    font-size: 60px;
    z-index: 99; 
}
svg {
    fill:var(--svg)
}
#container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}
#container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.insta-icon {
    display: inline-block;
    width: 180px;
    margin-bottom: -50px;
}
.insta-icon svg:hover {
    transform: scale(1.1);
    fill: var(--text-colour);
    transition: fill 0.3s ease-in-out;
}