@font-face {
    font-family: 'Inter Variable';
    src: url('fonts/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight:   900;
    font-style: normal;
}

* {
    font-weight:   900;
    font-family: 'Inter Variable', sans-serif;
    margin:   0;
    scroll-behavior: smooth;
}


* {
    cursor: url('icons/cursor.png'), auto;
  }

body{
    background-image: url(icons/2024-03-15_12.14.40.png);
}
.top-bar{
    width: 100%;
    height: 153px;
    background-color: #170012;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.top-bar img{
    width: 303px;
    height: 91px;
}
.top-bar span{
    font-size: 30px;
    color: white;
}
.nav-bar{
    width: 100%;
    height: 50px;
    background-color: #1700124C;
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.nav-bar a{
    font-size: 140%;
    text-decoration: none;
    color: white;
}
.middle{
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.middle img{
    width: 239px;
    height: 222px;
    animation: rotate infinite 10s linear;
}

@keyframes rotate {
    from {
      rotate: 0deg;
    }
  
    to {
      rotate: 360deg;
    }
  }

.middle a{
    margin-top: 2%;
    font-size: 30px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 70px;
    width: 300px;
    border-radius: 10px;
    border: solid 1px rgba(153, 0, 255, 0.699);
    background: rgb(87, 0, 138);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.562);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    transform: scale(1);
    transition: 0.25s;
}
.middle a:hover {
    transform: scale(1.1);
    transition: 0.25s;
}

.middle h1 {
    font-size: 50px;
    color: white;
    text-align: center;
}

.middle p {
    font-size: 20px;
    color: white;
    text-align: center;
    width: 65%;
}


@media (max-width: 414px) {
    .middle img{
        width: 139px;
        height: 132px;
    }
    .middle a{
        margin-top: 6%;
        text-align: center;
        padding: 10px;
        font-size: 20px;
        color: white;
        height: auto;
        width: auto;
        text-decoration: none;
        text-align: center;
        line-height: 70px;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10.5px);
        -webkit-backdrop-filter: blur(10.5px);
    }
    .top-bar img{
        width: 170px;
        height: 51px;
    }
    .top-bar span{
        font-size: 20px;
        color: white;
    }
    .middle h1 {
        margin-top: 20%;
        font-size: 50px;
        color: white;
        text-align: center;
    }
    
    .middle p {
        font-size: 13px;
        color: white;
        text-align: center;
        width: 65%;
        text-align: left;
    }
}