* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS 1p', sans-serif;
}

body {
    background-color: #222224;
    color: white;
    min-height: 100vh;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    padding: 2rem 0;
    font-weight: 700;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 60vh;
}

.left-element, .right-element {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-element {
    justify-content: flex-start;
}

.right-element {
    justify-content: flex-end;
}

img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

.gitlab-button {
    background-color: #ff6666;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.gitlab-button:hover {
    background-color: #ff4d4d;
    cursor: pointer;
}