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

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

body {
    font-family: Roboto, 'Times New Roman', Times, serif;
    height: 100vh;
    background: #e5e7eb;

    display: flex; 
    flex-direction: column; 
    /* background: #141E30;
    background: -webkit-linear-gradient(to bottom, #243B55, #141E30);
    background: linear-gradient(to bottom, #243B55, #141E30); */
}

.container {
    width: 100%;
}

.content {
    width: 1200px;
    margin: 0 auto;
}

.header {
    margin: 50px 0;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header h1 { 
    margin: 10px;
}

.header img { 
    width: 100px;
    background-color: #000;
    padding: 20;
}

.header span {
    color: #3c3c3c;
    font-size: 14px;
}

.text-white {
    color: #fff;
}

.text-blue {
    color: rgb(8, 27, 133);
}

h1 {
    font-size: 24px;
    color: #333;
}

h2 {
    font-size: 24px;
    color: #3c3c3c;
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: #333;
    margin: 10px 0;
}

.label {
    padding: 4px;
    background-color: green;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.button {
    width: 150px;
    color:rgb(8, 27, 133);
    padding: 8px;
    margin: 10px;
    background: #ccc;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.button:hover {
    opacity: 0.8;
}

#portfolio-section {
    background-color: #333;
    padding: 40px;

}

.portfolio-content {
    display: flex;
    justify-content: center;
}

.portfolio-item {
    width: 15rem;
    background: #fff;
    border-radius: 4px;
    margin: 10px 20px;
    /* transition: all .2s ease-in-out;  */

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.portfolio-item:hover {
    /* transform: scale(1.1);  */
}

.portfolio-item img {
    width: 100%;
    height: 120px;
    border-radius: 4px 0;
}

.portfolio-item-content {
    font-size: 16px;
    padding: 20px;
}

.portfolio-item-content h3 {
    font-size: 16px;
}

.portfolio-item-content p {
    color: #333;
    margin: 10px 0;
    min-height: 80px;
}

#contact-section {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.platforms {
    margin-top: 60px;
}

.platforms img {
    width: 100px;
    margin: 10px
}

footer {
    font-size: 12px;
    margin-top: auto; 
    text-align: center;
}

@media(max-width: 768px) {
    .content {
        width: 100%;
    }

    .portfolio-item {
        margin: 20px 0;
    }

    .portfolio-content {
        flex-direction: column;
            align-items: center;
    }
}