/* Global */

* {
  margin: auto;
  padding: auto;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Fonts */

@font-face {
  font-family: "PantonBlackCaps";
  src: url("./Assets/Fonts/PantonBlackCaps.otf");
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("./Assets/Fonts/Poppins-Regular.ttf");
}

.font-panton {
  font-family: "PantonBlackCaps";
}

.font-poppins {
  font-family: "Poppins-Regular";
}

/* Sections */

.cover {
  background-image: url("https://wallpapers.com/images/hd/cool-picture-wolf-art-o0ixt449edz5dgpa.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover .container {
  display: flex;
  width: 75%;
}

.logo {
  border-radius: 50%;
  user-select: none;
}

.text {
  margin-left: 30px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}

.text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.text .latest {
  font-weight: 400;
  margin-bottom: -10px;
}

/* Other Videos */

.other-videos {
  background-color: #f5f5f5;
  padding: 20px 0;
  display: flex;
}

.other-videos .card {
  width: 400px;
  height: 200px;
  margin: 0 10px;
  border-radius: 10px;
  background: #e4e4e4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Others */

.text-center {
    text-align: center;
    padding: 0 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.developer {
  margin-top: 20px;
}