body {
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.d-none {
  display: none !important;
}

img {
  height: 10rem;
}

nav {
  width: 100%;
}

nav ol {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
  gap: 30px;
}

nav ol li a, ol li {
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
}
nav ol li:hover {
  color: #135bb5;
  cursor: pointer;
  /* border-bottom: 2px solid #135bb5; */
}

main {
  padding: 15px;
  /* width: 100vw; */
  /* width: 100%; */
}

section {
  /* position: absolute; */
  /* top: 100%; */
}

section p {
  padding: 0 2rem;
}

#home span {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.vimeo-wrapper {
  width: 100vw;
  /* margin: 2rem auto; */
  /* box-shadow: 1px 1px 5px 2px grey; */
}

.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-out;
  visibility: hidden;
  display: none !important;
}

#portfolio {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 50px;
  width: 92vw;
}

#portfolio > div {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 35px;
}

#about{
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  margin-top: 2rem;
  /* padding: 0 20rem; */
  /* display: none; */
  /* color: #ffffff; */
}
#about img {
  height: 14rem;
}

#hire {
  align-items: start;
  border: 5px solid #135bb5;
  display: flex;
  flex-direction: column;
  /* margin-top: 3rem; */
  padding: 2rem;
}

#hire a{
  color: #8d51ff;
  text-decoration: none;
}
#hire a:hover {
  color: #135bb5;
  cursor: pointer;
  /* border-bottom: 2px solid #135bb5; */
}
#hire p {
  padding: 0;
}

.social-media__container {
  display: flex;
  gap: 40px;
  justify-content: space-evenly;
  margin-top: 3rem;
}

.social-media__container a {
  display: block;
  height: 50px;
  width: 50px;
}
.social-media__container em {
  display: none;
}

.logos {
    background-size: cover;
}

.instagram {
  background-image: url('../assets/images/logos/ig.png');
}
.linkedin {
  background-image: url('../assets/images/logos/linkedin.png');
}


@media screen and (min-width: 768px) {
  section p {
    padding: 0 10rem;
  }

  #portfolio {
    width: 60vw;
  }
}

@media (min-width: 768px) {
  .d-md-block {
      display: block !important;
  }
  .d-md-none {
      display: none!important;
  }
}