@font-face {
    font-family: Gagalin;
    src: url(../Midias/Fonts/Gagalin-Regular.otf);
    font-weight: bold;
}
body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #00b1b0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    background-color: #f2964c;
    padding: 20px;
    margin: 15px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 700px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    
}
h1 {
    font-family: Gagalin;
    font-size: 2.5em;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #fff;
}
.foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #333;
}
p {
    font-size: 1em;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #fff;
}
video {
    margin-bottom: 10px;
    border-radius: 20px;
    height: 200px;
}
blockquote {
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}
.button {
    display: inline-block;
    background-color: #333;
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.4s ease;
}
.button:hover {
    background-color: #00b1b0;
}