@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body{
    margin: 0 auto;
    background: #000000;
    font-family: "Poppins", serif;
}
.geral-403 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}
.cima-403 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70%;
    width: 100%;
}
.img-403{
    margin-top: 10px;
}
.error-image-403 {
    height: 160px;
    transition: 0.40s;
    animation: image403 3s infinite ease-in-out alternate;
}
@keyframes image403 {
    0%{
        scale: 0.8;
    }
    100%{
        scale: 1;
    }
}
.baixo-403 {
    background: #0A0A0B;
    width: 100%;
    color: white;
    height: 30%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.titulo-grande-403{
    font-size: 40px;
    font-weight: 600;
    color: #f9f9f9;
}
.titulo-sub-403{
    font-size: 23px;
    font-weight: 400;
    color: #0074ff;
}
.box-obs-403 {
    background: #0074ff1a;
    border: solid 1px #161616;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 10px;
}
.box-obs-infos {
    color: #f9f9f9;
    display: flex;
    gap: 10px;
    margin: 10px 0px;
    align-items: center;
}
.box-s{
    color: #0074ff;
}
.icon-403 {
    border: solid 1px #4848486b;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: #a3a3a326;
    flex-shrink: 0;
}
.botao-tentar {
    background: #0074ff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    border-radius: 5px;
    color: white;
    transition: 0.40s;
    animation: buttonpulse 2s infinite ease-in-out alternate;
}
.botao-tentar:hover{
    scale: 1.1;
}
@keyframes buttonpulse {
    0%{
        background-color: #72affa;
    }
    100%{
        background-color: #0074ff;
    }
}
@media only screen and (max-width: 650px) {
    .geral-403{
        height: 100%;
        padding: 20px;
    }
    .box-obs-403{
        width: auto;
        text-align: left;
    }
    .box-obs-infos {
        overflow: hidden;
    }
    .baixo-403{
        width: 100%;
        position: fixed;
        bottom: 0;
        height: 20%;
    }
    .titulo-grande-403 {
        font-size: 28px;
        text-align: center;
    }
    .titulo-sub-403 {
        font-size: 19px;;
        text-align: center;
    }
    .cima-403{
        display: block;
        text-align: center;
    }
}