@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Shantell+Sans:ital,wght@1,300&display=swap');

html {
    overflow-y: hidden; 
    scroll-behavior: smooth;
}

body{
    margin: 0;
}

a{
      text-decoration: none;
}

#page{
    height: 100vh;
    width: 100vw;
    background-image: url('../img/bg/Nebula Blue.png');
}

#back{
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    font-family: 'Play', sans-serif;
    font-size: 25px;
    width: 120px;
    right: 150px;
    color: #fff;
    padding: 5px 0 0 0;
    height: 35px;
    text-align: center;
    background-image: url('../img/bg/Nebula Blue.png');
    position: fixed;
    top: 0px;
    opacity: 0.15;
  transition: 0.5s ease-in-out;
}
#back:hover{
    opacity: 1;
}
