@font-face {
    font-family: "bluuNext";
    src: url("./assets/bluunext.woff2"), url("./assets/bluunext.woff");
}
body{
    font-family: "bluuNext";
 
    background-color: #82acff;
    min-height: 100vh;
    background-image: linear-gradient(180deg, #fff, rgba(255,255,255,0));
    display: flex;
    flex-direction:column;
    align-items: center;
    transition: background-color 0.5s;

 
}

h1{
    font-size: 5vmin;
    text-align: center;
    margin:5 0;
}
h2{
    font-size: 8vmin;
   text-align: center;
   margin: 0;
}

section{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

section a {
    color:red;
    text-decoration: none;
}
.circle{
    width:20px;
    height:20px;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    margin: auto;
    transition: background-color 0.5s;



}
footer{
    position: fixed;
    bottom:0;
    width:100%;
    padding:30px;
    display: flex;
    justify-content: center;
}

footer img {
    margin: 0 10px;
    cursor:pointer;
}