@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&display=swap');


* {
   font-family: "Bruno Ace", sans-serif;
   font-weight: 400;
   font-style: normal;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body{
    background-color: rgb(245, 36, 36);
}

.botaopadrao{
    text-decoration: none;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4169e1;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.botaopadrao:hover{
    background-color: #0040ff;
}
div{
    display: flex;
    flex-direction: row;
}
img{
    float: left;
    border-style:ridge;
    border-color: rgb(245, 36, 36);
    border-width: 10px;
    border-radius: 12px;
    width: 150px;
}
#perfil{
    display: flex;
}
.titulo{
    text-align: center;
    padding: 10px;
    background-color: rgb(248, 35, 35);
    color: rgb(255, 255, 255);
    font-size: 30px;
}
span{
    color: rgb(0, 162, 250);
    
}
.descricao{
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    background-color: rgb(248, 35, 35);
    color: rgb(255, 255, 255);
}
.video{
    aspect-ratio: 16 / 9;
    width: 100%;
}
.video iframe {
    width: 80%;
    height: 80%;
    border: 10px ridge rgb(245, 36, 36);
    border-radius: 12px;
    margin-top: 40px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 40px;
}
@media screen and (max-width: 1170px){
img{
    float: left;
    border-style:ridge;
    border-color: rgb(245, 36, 36);
    border-width: 10px;
    border-radius: 12px;
    width: 110px;
}
}