@font-face {
    font-family: "minecraft";
    src: url("./fonts/Silkscreen-Regular.ttf");
}

.top{
    gap: 150px;
    padding-bottom:80px;
}

.avatar{
    width: 200px;
    border-radius: 15px;
    transition: scale .2s ease-in-out;
    z-index: 10;
}

.avatar:hover{
    scale: 1.1;
    animation: shake .2s;
    animation-iteration-count: infinite;
}

.bigimg{
    width: 300px;
    transition: scale .2s ease-in-out;
    z-index: 10;
    border-radius: 15px;
}

.bigimg:hover{
    scale: 1.1;
}

.title{
    text-align: center;
    color: white;
    font-family: "minecraft";
    font-size: 40px; //og 80
}

div{
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

/* Essa é a regra padrão, que vai funcionar em QUALQUER celular */
img {
  width: 100%;
}

/* Para tablets e laptops pequenos */
@media screen and (min-width: 769px) {
img {
    width: 60%;
  }
}

/* Para desktops e telas grandes */
@media screen and (min-width: 1025px) {
img {
    width: 40%;
  }
}

/*esconder scrollbar*/
body {
  overflow: hidden;
}

body{
    background: black;
    display: flex;
    align-items: center;
    height: 100dvh;
    margin: 0;
    padding-top: 80px;
    flex-direction: column;
}
.text{
    line-height: 40px;
    text-align: center;
    color: white;
    font-family: "minecraft";
    font-size: 30px;
}
.bigtext{
    padding-top: 40px;
    text-align: center;
    color: white;
    font-family: "minecraft";
    font-size: 60px;
    animation: shake 5s;
    animation-iteration-count: infinite;
}

.textbio{
    display: inline-flex;
    justify-content: space-around;
    color: rgb(255, 255, 255);
    font-family: "minecraft";
    font-size: 30px;
    text-align: center;
}


.bio {
    display: flex;
    justify-content: space-around;
    align-items: space-around;
    padding-bottom: 50px;
}

y.text{
    color: #CCFF00;
}

.tinyimg{
    margin-top: 40px;
    width: 200px;
    border-radius: 15px;
}

.wrap1{
    width: 60%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wrap2{
    display: flex;
    justify-content: center;
    margin: 20px;
    flex-direction: column;
    width: auto;
}

iframe{
    flex-shrink: 0;
    height: 220px;
    transition: scale .2s ease-in-out;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

iframe:hover{
    scale: 1.1;
    animation: shake 5s;
    animation-iteration-count: infinite;
}

.oi{
    height: 250px;
    filter: brightness(.5);
    border-radius: 15px;
    transition: filter .2s ease-in-out, scale .2s ease-in-out;
}

.oi:hover{
    scale: 1.1;
    filter: brightness(1);
    animation: shake .5s;
    animation-iteration-count: infinite;
}

.hyperlink{
    line-height: 40px;
    text-align: center;
    color: #AD00FF;
    font-family: "minecraft";
    font-size: 30px;
    transition: scale .1s ease-in-out;
}

.hyperlink:hover{
    scale: 1.1;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(1deg); }
    50% { transform: translate(1px, 1px) rotate(-1deg); }
    100% { transform: translate(1px, 1px) rotate(1deg); }
  }

@keyframes floating {
    0%{ transform: translate(1px, -5px) rotate(0deg); }
    50%{ transform: translate(1px, 5px) rotate(0deg); }
    100%{ transform: translate(1px, -5px) rotate(0deg); }
}




