@media screen and (max-width: 1000px) {
    .externa {
        height: 300px !important;
    }

    .t {
        border-left-width: 4px !important;
        border-right-width: 4px !important;
        border-bottom-width: 8px !important;
    }

    .norte,
    .sul,
    .leste,
    .oeste {
        font-size: 1.5vh !important;
    }

    .cima,
    .baixo,
    .esquerda,
    .direita,
    .centro {
        font-size: 1vh !important;
        font-weight: bold !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
    user-select: none;
}

.externa {
    position: absolute;
    border: 3px solid white;
    height: 600px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.interna {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    height: 90%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.384);
    z-index: -1;
}

.norte {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    font-weight: bold;
}

.cima {
    width: 100%;
    height: 30%;
    text-align: center;
    padding-top: 5%;
    font-size: 2vh;
}

.oeste {
    width: 5%;
    height: 30%;
    aspect-ratio: 1/1;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    font-weight: bold;
}

.esquerda {
    width: 30%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    padding-left: 2%;
    font-size: 2vh;
    float: left;
}

.centro {
    width: 30%;
    aspect-ratio: 1/1;
    text-align: center;
    font-size: 2vh;
    float: left;
    background-position: center;
}

.direita {
    width: 30%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 2%;
    font-size: 2vh;
    float: left;
}

.leste {
    width: 5%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    font-weight: bold;
}

.baixo {
    width: 100%;
    height: 30%;
    display: flex;
    text-align: center;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5%;
    font-size: 2vh;
}

.sul {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    font-weight: bold;
}

.t {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid white;
    position: absolute;
}

#t1 {
    transform: rotate(45deg);
    top: 0;
    right: 0;
}

#t2 {
    transform: rotate(135deg);
    bottom: 0;
    right: 0;
}

#t3 {
    transform: rotate(225deg);
    bottom: 0;
    left: 0;
}

#t4 {
    top: 0;
    left: 0;
    transform: rotate(315deg);
}

.quadro {
    position: absolute;
    height: 68%;
    width: 68%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seta {
    width: 100%;
    height: 100%;
    background-image: url(../imagens/flexa.png);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position-x: center;
}

.info {
    display: flex;
    justify-content: right;
    font-size: 2vh;
 
}