@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab&display=swap');

#titulo {

    font-family: "Calistoga", serif;
    font-size: 80px;
    display: block;
    width: 100%;
    text-align: center;
    color: #2a2e26;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('imagens/fundo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh;
}

.conteudo {
    font-family: "Epunda Slab", serif;
    font-size: 125%;
    border-left: 2px solid #000000;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    border-radius: 24px;
    max-width: 90%;
    margin: 40px auto;
    margin-top: 3%;
    padding: 32px;
    box-sizing: border-box;
    background: #fff;
}

.r-imagens {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.r-imagens:nth-child(2) {
    animation-delay: 1.2s;
}

.r-imagens:nth-child(3) {
    animation-delay: 2.4s;
}

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(30px);
    }
}

.img-hover-text {
    font-family: 'Courier New', monospace;
    display: none;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: #000000;
    padding: 4px 12px;
    font-size: 40px;
}