@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background-color: #191c32;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 2em;
}

.brand {
    margin-top: -7px;
}

.brand  span {
    color: aqua;
}

.menu {
    display: flex;
    width: 50%;
    justify-content: space-around;
    align-items: center;
}

.menu li {
    list-style: none;
}
.menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;

}

.menu .active {
    color: aqua;
}

.menu a:hover {
    background-color:aqua;
    color: #191c32;
    transition: ease-in .4s;
}

.main {
    margin: 0 auto;
    width: 80vw;
    height: 80vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    grid-gap: 1em;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    
}

span {
    color: aqua;
}

.download-cv {
    padding: 10px 20px;
    background-color: aqua;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 1px 3px 11px -5px rgba(102, 231, 200, 0.69);

}

.download-cv:hover {
    background-color: #fff;
    box-shadow: none;
    transition: ease-in .4s;
}

.main img {
    width: 500px;
    /* border: 7px solid aqua; */
    height: 500px;
}

.circle {
    border-radius: 50%;
    display: inline-block;
    position: relative;
  }

  .circle img {
    border-radius: 50%;
    display: block;
    /* border:7px solid rgba(255,255,255,0); */
  }

  .circle:after {
   content: "";
   display: block;
   width: 100%;
   height: 100%;
   background: radial-gradient(ellipse at center,  rgba(255,255,255,0) 40%,rgba(255,255,255,1) 100%,rgba(255,255,255,1) 100%);
   border-radius: 50%;
   position: absolute;
   top: 0;
   left: 0;
   
 
  }

