* {
    margin: 0;
    padding: 0;

}

::selection {
    background-color: #f2097d;
    color: #000000;
}

body {
    background-color: #e6e6e6;
    color:#3b3b3b
}


h1 {
    color: #000000;
    text-align: center;
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #cacaca;
    width:fit-content;
    margin: 0 auto;
}


#estrela {
    -webkit-animation: rotating 100s linear infinite;
    animation: rotating 100s linear infinite;
    margin: 0 auto;
    display: block;
    
    
}

@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


p {
    padding: 0.5em;
}

a {
    color:rgb(202, 21, 120);
     margin: 0 auto;
}

span {
    background-color: #e2a7c4;
    font-weight: bold;
}

@media only screen and (orientation:portrait) {

    #estrela {
        width: 100%;
        margin: 0 auto;
    }

    body {
        font-size: 1.85vw;
    }
    
    }

#fundo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
               scale(2.5);        
    z-index: 0;
}

#convite {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
    margin: 0 auto;
}

#poster {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(clamp(.6, 1vw, 1.3));
}