/* Alignment and margins*/
.center {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-top {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}

.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.padding-top {
  padding-top: 80px;
}

.padding-top-s {
  padding-top: 20px;
}

.padding-bottom {
  padding-bottom: 80px;
}

.padding-bottom-s {
  padding-bottom: 20px;
}

.translate-up{
  transform: translate(0,-50%);
}

.fixx{
  position: fixed;
  top:0;
}

.navbar{
  background-color: #ff645c;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.white{
  color: #ffffff;
}

#One{
  background-color: #ff645c;
  height: 100vh;
}

.Two{
  background-color: #2a2a2a;
}

/*Text*/
body{
  font-size: 17px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #ffffff;
}

h1{
  font-size: 55px;
}

h2{
  font-size: 30px;
}

h3{
  font-size: 24px;
}

a{
  color: #ffffff;
}

a:hover{
  color: #ffffff;
  font-family: inherit;
}

mark {
  background-color: #ffffff;
}

.mybtn {
  background-color: inherit;
  border: 2px solid white;
  border-radius: 30px;
  padding: 1px;
  margin: 1px;
}

/*Images*/
.imgcover{
  opacity: 1;
  transition: .4s ease;
}

.imgcover:hover {
  filter: grayscale(70%);
  transform: scale(1.08);
}

.imgcard{
background-color: #ffffff;
}

/* responsively apply fixed position */
@media (min-width: 576px){
    .leftt {
        position: fixed;
        top: 0;
        bottom: 0;
    }
}
