html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: black;
    background-size: cover;
    color: white;
    margin: 0;
}

#profile-header {
    margin-top: 30px;
    background-color: #141414;
    margin-left: 1%;
    margin-right: 1%;
}

.profile-title {
    font-size: 48px;
    font-family: "Calibri, sans-serif";
    font-weight: 500;
}

#profile-img {
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
}

#profile-text {
    margin: auto;
}

#quote {
    margin-top: 10%;
    margin-bottom: 10%;
}

iframe {
    margin-top: 2%;
    width: 100%;
    margin-bottom: 1%
}

.wrapper {
    width: 100%;
    background-color: #212529;
    text-align: center;
    bottom: 0;
    margin-bottom: 0;
}

.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
  }

#copyright {
    text-align: right;
    margin-right: 1%;
}

li {
    display: inline-block;
    list-style-type: none;
}

.social-media {
    margin-top: 1%;
}

.email {
    width: 30%;
    background-color: #141414;
    border-radius: 5px;
}

.form-address {
    margin-top: 2%;
}

/*------------------------- */

.btn {
    box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 0.6em;
    color: #ffffff;
    cursor: pointer;
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin: 20px;
    padding: 1.2em 2.8em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  .btn:hover, .btn:focus {
    color: #fff;
    outline: 0;
  }

  .first {
    -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  }
  .first:hover {
    box-shadow: 0 0 40px 40px #000000 inset;
  }

  .second {
    -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  }
  .second:hover {
    box-shadow: 0 0 40px 40px #212529 inset;
  }
