* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    min-width: 100vw;
}

.main {
    padding-top: 20px;
}

.logo {
    width: 16%;
    margin: auto;
}

.logo img {
    width: 100%;
}

.links {
    width: 40%;
    padding: 20px;
    margin: auto;
    background-color: #0099cc8e;
}

.links .link {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10px;
}

.links .link .speed {
    background-color: white;
    padding: 12px;
    font-weight: bold;
    font-size: 16pt;
    color: #0099cc;
}

.links .link .url {
    width: 65%;
    height: 100%;
    background-color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links .link .url .right-arrow {
    width: 16px;
    animation: rightArrow 0.3s infinite alternate;
    margin-right: 16px;
}

.links .link .url .right-arrow img {
    width: 100%;
    height: auto;
}

.links .link .url .left-arrow{
    width: 16px;
    animation: leftArrow 0.3s infinite alternate;
    margin-left: 16px;
}

.links .link .url .left-arrow img{
    width: 100%;
}

.links .link .url a {
    text-decoration: none;
    background: linear-gradient(to right, #f32170,
            #ff6b08, #cf23cf, #eedd44);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-size: 18pt;
}

.right-point {
    color: #0099cc;
}

.links .link .join-button{
    background-color: white;
    padding: 12px;
}

.links .link .join-button a {
    color: #0099cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 18pt;
}

.banners{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.banners img{
    width: 100%;
}

@media screen and (max-width: 820px) {
    h1{
        font-size: 16pt;
    }

    .logo {
        width: 80%;
        margin: auto;
    }

    .links {
        width: 90%;
    }

    .links .link .speed {
        font-size: 10pt;
    }

    .join-button{
        display: none;
    }

    .links .link .url a {
        font-size: 10pt;
    }

    .banners{
        width: 90%;
    }
}

@keyframes leftArrow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-5px);
    }
}

@keyframes rightArrow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(5px);
    }
}