/* nav bar style*/
body {
  margin: 0;
  background-color: #4b5346;
  font-family: "Vollkorn SC", serif;
  font-weight: 800;
  color: #e4ded5;
}
.container {
  width: 80%;
  margin: 0 auto;
  font-family: "Comfortaa", cursive;
}

header {
  background: #292a26;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header::after {
  content: "";
  display: table;
  clear: both;
}

.logo {
  float: left;
  border: 10px;
  font-size: 25px;
  color: #e4ded5;
}

nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 23px;

  position: relative;
}

nav a {
  color: #e4ded5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover {
  color: rgb(192, 180, 165);
}

nav a::before {
  content: "";
  display: block;
  height: 5px;
  background-color: #444;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}
/* end nav bar style */

/* begin form css*/
.center {
  display: flex;
  justify-content: center;
}
input[type="text"],
select,
textarea {
  width: 65%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}
input[type="submit"] {
  background-color: #1e3e33;
  color: white;
  padding: 2px 20px;
  border: none;
  border-radius: 4px;
  max-height: 30px;
  cursor: pointer;
  float: right;
}
.mailcontainer {
  max-width: 900px;
  border: 25px solid transparent;
  border-radius: 15px;
  background-color: #343530;
  padding: 30px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  border-image: url(../images/borders/bookborder.svg) 175 round;
}
@media screen and (max-width: 600px) {
  .col-25,
  .col-75,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
}

/* end form */

/*start about me */
.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pfp {
  align-items: center;
  flex-flow: column;
}
.pfp img {
  margin-right: 20px;
  margin-left: 20px;
  max-width: 300px;
  max-height: 300px;
  padding: 3px;
  border: solid transparent 30px;
  border-radius: 20%;
  border-image: url(../images/borders/victorian1.svg) 175 round;
}
.aboutme {
  padding: 6px;
  flex-flow: column;
  align-items: center;
  border: solid transparent 40px;
  border-radius: 15%;
  border-image: url(../images/borders/bookborder.svg) 175 round;
}
/* end about me */

/* social cards */

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 200px;
  padding: 10px;

  border-radius: 15%;
  
  color: #121211;
  text-align: center;
  background-color: rgb(254, 228, 219);
  
}

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

.card img {
  border-radius: 5px 5px 0 0;
  padding: 15px;
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container {
  padding: 2px 16px;
}
.socflex{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 30px;
  max-width: 800px;
  }
  .flexflex{
      display: flex;
      justify-content: center;
  }
  .vicbor{
    border: solid transparent 30px;
    border-radius: 15%;
    border-image: url(../images/borders/victorian1.svg) 200 round;

  }
/* end socials*/

/* Start portfolio */

.bookbor{
  border: solid transparent 40px;
  border-radius: 15%;
  border-image: url(../images/borders/bookborder.svg) 200 round;
}
.proflex{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 30px;
  max-width: 100%;
}
.procard {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 200px;
  padding: 10px;

  border-radius: 20%;
  
  color: #121211;
  text-align: center;
  background-color: rgb(254, 228, 219);
  
}

.procard:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.procard img {
  border-radius: 5px 5px 0 0;
  padding: 15px;
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.procontainer {
  padding: 2px 16px;
}
