@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lekton:ital,wght@0,400;0,700;1,400&display=swap');

body {
    background: linear-gradient(0deg, #151515 0%, #303030 100%);
}

h1 {
    font-family: 'Knewave', sans-serif;
    color: white;
}

p, h5 {
    font-family: 'Lekton', sans-serif;
    color: white;
}

img {
    -webkit-filter: drop-shadow(15px 0 10px rgba(0, 0, 0, 0.9));
    filter: drop-shadow(15px 0 10px rgba(0, 0, 0, 0.9));
}

.information {
    width: 60%;
}

.progress {
    padding: 3px;
    height: 18px;
    border-radius: 30px;
    background: rgba(150, 150, 150, 0.15);
    box-shadow: inset 0 1px 2px rgba(150, 150, 150, 0.15), 0 1px rgba(0, 0, 0, 0.08);
}

.java-progress, .kotlin-progress, .python-progress, .other-progress {
    height: 12px;
    border-radius: 30px;
    background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
}

.java-progress {
    width: 65%;
    background-color: #0080ff;
}

.kotlin-progress {
    width: 15%;
    background-color: #ac2feb;
}

.python-progress {
    width: 10%;
    background-color: #2df758;
}

.other-progress {
    width: 10%;
    background-color: #f7882d;
}

.read-more {
    padding: 8px 0;
    width: 120px;
    color: white;
    text-decoration: none;
    background-color: #404040;
    border-radius: 20px;

    transform: scale(1);
    transition: 0.3s;
}

.read-more:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.row {
    margin-bottom: 5rem;
}