body {
    background-image: url("imagens/moçadigitando.jpg");
    background-size: cover;
    display: flex;
    font-family: "Open Sans", sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px 0;
    margin: 0;      
}

.main { 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 75%;
}

.left-column {
    width: 30%;
}

.right-column {
    width: 70%;
    padding-left: 20px;
}

.apresentação {
    display: flex;
}

.photo {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: solid 3px;
    border-color: white;
}

.text > span {
    display: block;
    font-size: 40px;
    color: white;
    text-transform: uppercase;
}

.text .nome {
    font-family: "Passion One", sans-serif;
    font-size: 70px;
    color: rgb(231, 13, 231);
}

.Bio {
    display:flex;
    flex-direction: block;
    font-family: "Open Sans", sans-serif;
}    

p {
    color: white;
    font-size: 18px;
    text-align: justify;

}

.midiasocial {
    padding: center;
    padding: 0;
    list-style: none;
}

.midiasocial li {
    margin-right: 15px;
    margin-bottom: 15px;
}

.midiasocial li a {
    display: inline;
    font-family: "Open Sans", sans-serif;
    color: white; 
    padding: 25px 25px;
    justify-content: space-around; 
    transition: all 350ms;   
}
.midiasocial li a:hover {
    color: rgb(235, 8, 159);
}

.midiasocial .icone {
    font-size: 30px;

}
  
.midiasocial li a i {
    margin-right: 12px;
}
  
* {
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
    body { 
    min-height: 100vh;   
    }
    .main  {
    width: 90%;
    }   
    .left-column {
    width: 100%;
    text-align: left;
    }
    .right-column {
    width: 100%;
    text-align: left;
    }
    .photo {
    width: 100%;
    }
}
