body {
    background-image: url("../static/arquivos/bg-gabriel.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.rotas {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 50px;
    background-color: #121212b2;
}
.rotas h1 {
    color: white;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}
.rotas p {
    color: white;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}
.rota {
    background-color: #121212c9;
    border: 8px double darkorange;
    display: flex;
    text-align: center;
    align-items: center;
    margin: 40px auto;
    flex-direction: column;
    width: 40%;
    padding: 10px 0;
    border-radius: 15px;
    box-shadow: 0 15px 20px #000000b9, 0 10px 20px #000000b9;
    transition: .2s ease-in-out;
}
.rota:hover {
    box-shadow: 0 15px 20px rgba(137, 43, 226, 0.651),  0 8px 30px rgba(137, 43, 226, 0.651);
    transform: scale(1.06);
}
.rota a {
    text-decoration: none;
    color: #fff;
}
.rota h2 {
    justify-content: space-between;
}
#portifolio:hover {
    background-color: #121212;
}
#whatsapp:hover {
    background-color: #20c020;
}
#linkedin:hover {
    background-color: #0c2cb8;
}
#instagram:hover {
    background-color: #e72d52;
}
#github:hover {
    background-color: #000000;
}
#youtube:hover {
    background-color: #b10000;
}
#twitch:hover {
    background-color: #6441a5;
}
#discord:hover {
    background-color: #576cb6;
}
#x:hover {
    background-color: #000000;
}
#big-news:hover {
    background-color: #8a2be2;
}
::-webkit-scrollbar {
    width: 10px;
    background-color: #000000;
}
::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: #666666;
}


@media (max-width: 1200px) {
    .rotas {
         display: flexbox;
         align-items: center;
         justify-content: center;
         flex-direction: column;
         width: 100%;
         text-align: center;
    }
    .rota {
        width: 90%;
    }

}