@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #111;
    color: #fff;
}

header {
    background: url('rap-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.logo {
    width: 120px;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

header h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

header p {
    font-size: 18px;
    margin-top: 10px;
    z-index: 2;
    position: relative;
    max-width: 60%;
}

.about, .featured {
    padding: 50px 10%;
    text-align: center;
}

.about img {
    width: 20%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
}

.articles {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.article {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    max-width: 300px;
}

.article:hover {
    transform: scale(1.05);
}

.article img {
    width: 100%;
    border-radius: 10px;
}

.article h3 {
    margin-top: 10px;
    font-size: 18px;
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 10%;
    background-color: #1a1a1a;
}

.skills .block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.skills .text {
    width: 100%;
}

.skills h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.skills p {
    font-size: 18px;
    line-height: 1.5;
    color: #d1d1d1;
}
