@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}
body{
    background-color: #181818;
}
.page{
    width: 100%;
}
.page .container{
    width: 500px;
    padding: 50px;
    margin: auto;
    text-align: center;

}
.logo{
    margin: auto;
    width: 200px;
    height: 200px;
}
.logo img{
    width: 100%;
}
.page h1{
    color: #f5f5f5;
    margin: 20px;
    font-size: 40px;
    font-weight: 700;
}
.page h2{
    color: #f5f5f5;
    margin-bottom: 50px;
    font-weight: 500;
}
.page h2 span{
    color: #634596;
    font-weight: 700;
}
.links a{
    text-decoration: none;
    color: #f5f5f5;
    width: 100%;
}
.links .link{
    background-color: #2c2c2c;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 20px;
    border-radius: 15px;
    transition: 0.5s;
}
.links .link:hover {
    background-color: #634596;
}
.copyright{
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}
.copyright img{
    width: 100%;
}
.copyright p{
    position: absolute;
    right: 50px;
    bottom: 20px;
    color: #f5f5f5;
}

@media (min-width: 1281px) {

//CSS

}


@media (min-width: 1025px) and (max-width: 1280px) {

//CSS

}

@media (min-width: 768px) and (max-width: 1024px) {

//CSS

}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

//CSS

}


@media (min-width: 481px) and (max-width: 767px) {

    .page .container {
        width: 350px;
    }
    .waves{
        display: none;
    }
    .links{
        margin-bottom: 50px;
    }
    .copyright p {
        position: unset;
        margin-bottom: 20px;
    }
    .copyright {
        text-align: center;
    }
    .page h1{
        color: #f5f5f5;
        margin: 20px;
        font-size: 30px;
    }
    .page h2 {
        font-size: 20px;
    }

}


@media (max-width: 480px) {

    .page .container {
        width: 260px;
    }
    .waves{
        display: none;
    }
    .links{
        margin-bottom: 50px;
    }
    .copyright p {
        position: unset;
        margin-bottom: 20px;
    }
    .copyright {
        text-align: center;
    }
    .page h1{
        color: #f5f5f5;
        margin: 20px;
        font-size: 30px;
    }
    .page h2 {
        font-size: 20px;
    }
    .logo{
        margin: auto;
        width: 150px;
        height: 150px;
    }
}
