body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: black;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: black url('./images/medias_background.png') no-repeat;
    background-position: center top;
    background-size: auto 800px;
}

footer {
    margin-top: 5rem;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #616161;
    text-align: center;
    font-size: 0.9rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 5rem;
    background: #000000;
    background: linear-gradient(181deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.83) 53%, rgba(0, 0, 0, 1) 79%);
}

h1 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}

h3 {
    font-weight: 500;
    margin: 0;
    width: 100%;
    text-align: center;
}


#logo {
    height: 70px;
    width: auto;
    margin-bottom: 5rem;
}

#illustration {
    height: 400px;
    width: auto;
}


#github {
    height: 50px;
    width: auto;
    cursor: pointer;
}

@media (max-width: 900px) {

    body {
        background-size: auto 600px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.7rem;
    }


    #logo {
        height: 40px;
        width: auto;
    }

    #illustration {
        height: 150px;
    }
}


.step {
    border-radius: 2rem;
    background: linear-gradient(317deg, rgba(13, 13, 13, 0.45) 0%, rgba(66, 66, 66, 0.4) 79%);
    padding: 1.5rem;
    margin: 0.7rem 0;
    width: 80%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step button {
    border-radius: 0.6rem;
    background: linear-gradient(317deg, rgba(222, 0, 0, 1) 0%, rgba(128, 0, 0, 1) 79%);
    color: white;
    height: 3rem;
    width: 15rem;
    border: none;
    border-bottom: solid 4px rgb(95, 7, 7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 1rem;
}

.step button:hover {
    background: linear-gradient(317deg, rgba(163, 0, 0, 1) 0%, rgba(61, 0, 0, 1) 79%);
}

.step button:active {
    background: linear-gradient(317deg, rgba(255, 0, 0, 1) 0%, rgba(166, 20, 20, 1) 79%);
}

.step button:disabled {
    border-bottom: none;
    background: linear-gradient(317deg, rgba(51, 51, 51, 1) 0%, rgba(133, 133, 133, 1) 79%);
}

.step button img {
    height: 1.5rem;
    width: auto;
}

.step button div {
    text-align: center;
    width: 100%;
}

.code-snippet {
    background: black;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
    width: 100%;
}

.code-snippet img {
    height: 1.5rem;
    width: auto;
    cursor: pointer;
    border-radius: 100%;
    border: solid 2px transparent;
}

.code-snippet img:active {
    background-color: darkred;
    border-color: darkred;
}

.code-snippet pre,
.code-snippet code {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#docker-link {
    color: #00aaff;
    text-decoration: none;
}