

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
    background-color: black;
    max-width: 2500px;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* HEADERS */

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height:700px;
    margin: 0;
    background-color: black;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
  }

  .card {
    width:600px;
    height:700px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
  }

  .banner {
    height: 200px;
    background-image: url('banner.jpeg');
    background-size: cover;
    background-position: center;
    margin:0;
  }

  .photo {
    width: 100px;
    height: 100px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    margin: -50px auto 10px;
    overflow: hidden;
    background-color: #ffffff;
  }

  .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-content {
    padding: 10px 20px;
    height:10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .card-content a{
    font-size: 18px;
    text-decoration: none;
    color:#42212a;
    font-weight:bold;
  }

  .card-content a:hover{
    color:#0c2736;
  }

  .card-content .mail i{
    font-size:25px;
    margin-right:10px;
    color:#42212a;
  }

  .card-content .call i{
    font-size:25px;
    margin-right:10px;
    color:#42212a;
  }


  .buttons{
  /*  height:30%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

   .a-btn {
  /*  width: 165px;*/
    padding: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    border-radius: 1rem;
    border: none;
    position: relative;
    background: #0c2736;
    transition: 0.1s;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
  }


   .a-btn:hover {
     cursor: pointer;
    opacity: 0.5;
  }
  
  
  .buttons button::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(66, 33, 42, 1) 17.8%, rgba(12, 39, 54, 1));
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  button:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(66, 33, 42, 1) 17.8%, rgba(12, 39, 54, 1) 100.2% );
    transition: 0.5s;
  }

  /* RESPONSIVES */

  @media (max-width: 300px) {
    .card-content{
        height:18%;
    }
    .card-content .call{
       display:flex;
       flex-direction: column;
       justify-content: space-around;
    }

    .card-content .mail{
        display:flex;
        flex-direction: column;
        justify-content: space-around;
    }

  }