
@media only screen and (orientation: portrait) {
    body {
      display: block; /* Show your website normally */
    }
  }

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url(assets/danny-howe-bn-D2bCvpik-unsplash_boletera.jpg);
    background-position:center;
    
}

.medios-sociales{
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 30px;
    width:100%;

}
.logos{
    width: 30px;px;
    height: 30px;
    padding: 3px;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    /*background: url('assets/background.jpg') no-repeat center center/cover;*/
    
 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.formulario {
    display:flex;
    flex-direction: column;
    align-items: center;
    width:250px;
    padding: 2px;

}

.mc-field-group{
    padding:3px;
}

.call-to-action{
    margin-top:1%;
}

input {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
}

button {
    
    margin-top:8px;
    outline: 0;
    appearance: none;
    padding: 0px 12px;
    border-radius: 4px;
    width:90%;
    text-decoration: none;
    cursor: pointer;
    background-color: rgba(249, 251, 250, 0);
    border: 3px solid rgb(203, 213, 216);
    box-shadow: rgb(6 22 33 / 30%) 0px 1px 2px;
    color: rgb(252, 252, 252);
    font-size: 14px;
    font-weight: 500;
    height: 36px;
    transition: all 150ms ease-in-out 0s;
    :hover {
        color: rgb(61, 79, 88);
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(93, 108, 116);
        box-shadow: rgb(0 0 0 / 30%) 0px 4px 4px, rgb(231 238 236) 0px 0px 0px 3px;
    }


} 


@media only screen and (orientation: portrait) and (max-width: 400px) {
    /* Styles for iPhone SE */

    .formulario {
        width:100%;
        
    }

    p {
        margin-bottom: 20px;
        font-size: 1.5em;
    }


    .mc-field-group{
       width:100%;
    }

    input {
        width:85%;
        padding: 12px;
        align-items: center;
        font-size: 20px;
    }

    button {
        width: 92%;
        height:50px;
        font-size: 20px;
        font-weight: 500;
        border: 3px solid rgb(203, 213, 216);
    }


}


@media only screen and (orientation: portrait) and (min-width: 402px) and (max-width: 698px) {

    /* Larger phones */


    body {
        display: block; /* Show your website normally */
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }


      img {
        width: 60%;
      }



    p {
        margin-bottom: 20px;
        font-size: 1.6em;
    }

    .formulario {
        width:100%;
        
    }

    .mc-field-group{
       width:100%;
    }

    input {
        width:85%;
        padding: 12px;
        align-items: center;
        font-size: 35px;
    }

    button {
        width: 92%;
        height:50px;
        font-size: 20px;
        font-weight: 500;
        border: 4px solid rgb(203, 213, 216);
        border-radius: 6px;
    
    }



}

@media only screen and (orientation: portrait) and (min-width: 699px) and (max-width: 1025px) {
    /* TABLET */

    body {
        display: block; /* Show your website normally */
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }


      img {
        width: 50%;
      }



    p {
        margin-bottom: 20px;
        font-size: 3em;
    }

    .formulario {
        width:100%;
        
    }

    .mc-field-group{
       width:100%;
    }

    input {
        width:92%;
        padding: 12px;
        align-items: center;
        font-size: 35px;
    }

    button {
        width: 95%;
        height:80px;
        font-size: 30px;
        font-weight: 700;
        border: 4px solid rgb(203, 213, 216);
        border-radius: 6px;
    
    }



}