*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.main {
    background-color: white;
    background-size: auto;   
    background-size: cover;
}

.navbar{
    width: 100%;
    height: 75px;
    justify-content: space-between;
    margin: auto;
    display: flex;
    box-shadow: 1px 1px 8px 1px #bfbfbf;
}

.logo img{
    width: 50px;
    height: 50px;
    padding-left: 20px;
    padding-top: 10px;
    margin-top: 5px;
}

.menu{
    height: 75px;
}

ul{
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-right: 62px;
    margin-top: 27px;
    font-size: 18px;
}

ul li a{
    text-decoration: none;
    color: #000;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}


ul li a:hover{
    color: #c02f1d;
}

ul li.active a{
    color: #c02f1d;
}

.home-content{
    display: flex;
    position: relative;
    justify-content:space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: max-content;
    padding-top: 20px;
}

.profile-image{
    width: 350px;
    height: 440px;
    border-radius: 70%;
    border: 1px solid #fff;
}

.name{
    font-family: Arial;
    font-size: 30px;
    font-weight: 700;
    color: #c02f1d;
}

.job{
    font-size: 30px;
    margin: 15px 0;
}

.typing{
    color: #c02f1d;
}

.icons a{
        text-decoration: none;
        padding-bottom: 30px;
        color: #000;
}

.icons ion-icon{
        position: relative;
        color: #000;
        font-size: 30px;
        padding-left: 14px;
        padding-top: 30px;
        transition: 0.3s ease;
}

.icons ion-icon:hover{
        color: #c02f1d;
    }

footer {
    margin-top:15px;
    text-align:center;
    font-size:13px;
    color:#c02f1d;
    margin-bottom:0;
      }

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}

.container {
  padding: 0 16px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}