/* parametrso iniciales*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');


.body{
    /* Tamaño de la ventana */
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1DB954;
  display: flex;
}

.cabecera{
    /* ancho y alto */
  width: 100vw;
  height: 10vh;
  text-align: center;
  background-color: black;
    /* para fijar cabecera */
  position: fixed;
  z-index: 1;
  top:0;
}

.botonera{    
    padding-right: 2vw;
    padding-left: 2vw;
    padding-top: 1vh;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.pie_pagina{
     /*ancho y altura*/
     width: 100vw;
     height: 5vh;
     background-color: black;
     /* fijar pie de pagina*/
     position: fixed;
     bottom: 0;
}

.titulo_presentacion{
     /* formato del titulo*/
    font-family: 'Poppins', sans-serif;
    font-size: 195px;
    color:black ;
    text-align: center;
    position: relative;
    display: inline-block;

}
