@import url('https://fonts.googleapis.com/css2?family=Festive&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    text-align: center;
    color: #fff;
    margin-top: 5em;
    margin-bottom: 2rem;
    h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    p {
        font-size: 1.2rem;
        line-height: 1.5;
    }



    /* width: 100%;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem; */
}

.container {
    background: radial-gradient(#3b0404, #1f0101, #0c0000);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rama {
    width: 100%;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

.adorno {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    animation: animar .8s linear infinite;
}

@keyframes animar {
    0% {
        background: var(--color);
        transform: scale(1);
    }
    100% {
        background: var(--color);
        box-shadow: 0px 0px 10px var(--color);
        transform: scale(.3);
    }
}

.rama p {
    padding-top: 4rem;
    font-size: 3rem;
    color: #ff6f6f;
    font-family: 'Festive';
}

.domainforsale {
    text-decoration: none;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: #FFDD00;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    transition: all 0.1s linear;
    box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domainforsale a {
    text-decoration: none;
    color: #161414;
    text-align: center;
    font-size: 0.8em;
}


/* .domainforsale:hover {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
} */