*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
}

.Part_cols{
    padding: 20px;
    margin: 20px;
    justify-content: space-evenly;
    display: flex;
}

.Part_cols article{
    border: 2px solid rgb(255, 55, 0);
    display: flex;
    width: 32%;
    height: 190px;
    text-align: center;
    flex-direction: column;
    align-content: space-between;
}

article img{
    width: 100%;
    height: 100%;
}

article button{
    background-color: rgb(230, 226, 232);
    border: 2px double rgb(255, 255, 255);
    border-radius: 25px;
}

article button:hover{
    background-color: rgb(255, 55, 0);
    border: rgb(255, 55, 0);
    color: aliceblue;
}

h1{
    color: white;
    text-align: center;
    font-size: 80px;
}

h1 span{
    color: rgb(255, 55, 0);
}

article p{
    color: aliceblue;
}