@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    font-family: Inter, sans-serif;
    --light-grey: #999999;
    --dark-grey: #645E5E;
    --dash: black;
    --primary: #FD95A0;
    --primary-light: #FEE2E5;
    --light-pink: #FFE6E7;
    --very-light-pink: #F7ECEC;
    --dark-pink: #E40053

}
body,#content{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;

}
body::before{
    opacity: 0;
    content: '';
    width: 100%;
    height: 80px;
    background: rgba(228, 0, 83, 0.37);
    position: absolute;
    top: 0;
    left: 0;

}
body .page{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.noselect {
     -webkit-touch-callout: none; /* iOS Safari */
     -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Old versions of Firefox */
     -ms-user-select: none; /* Internet Explorer/Edge */
     user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
 }