body {
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.browse-our-products {
    background-image: url("background-blur.png");
    background-size: cover;
    background-position: 50%;
    height: 200px;
    padding: 25px;
    color: white;
    text-align: center;
}
.browse-our-products p {
    color: #e4e0e0;
}
.browse-our-products button {
    background-color: #566496;
    padding: 10px;
    border: none;
    color: white;
    transition: all 1s;
}
.browse-our-products button:hover {
    background-color: #3f4a72;
    border-radius: 2px;
}

/* News */

.news {
    margin-top: 25px;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3,1fr);
}
.news-box {
    min-width: 30%;
    height: 100%;
    padding: 15px;
    margin: 10px;
    background-color: #46474b;
    text-align: center;
    color: white;
}
.news-box p {
    color:#e4e0e0
}
.news-box button {
    background-color: #566496;
    color: white;
    padding: 10px;
    border: none;
}

/* Header */

header {
    background-color: #46474b;
    width: 100%;
    overflow: hidden;
}
header a {
    margin: 10px;
    float: left;
    color: #a9a9ac;
    text-decoration: none;
}
header .header-right {
    float: right;
}
header .header-title {
    font-size: large;
    font-weight: bold;
}

/* Products */

.products {
    margin-top: 25px;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3,1fr);
    overflow-y: hidden;
}
.product {
    min-width: 75%;
    height: 300px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    transition: all 5s;
    border-radius: 7px;
    box-shadow: 2px 2px 10px black;
}
.product-info {
    margin-top: 50%;
    transform: translateY(-50%);
}
.product-info button {
    padding: 10px;
    color: white;
    background-color: #566496;
    border: none;
    opacity: 0;
    transition: all 1s;
}
.product:hover button {
    opacity: 1;
}
.products-header {
    text-align: center;
}


.projects {
    width: 75%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.project {
    background: #f9f9f9;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
}
.project-right {
    float: right;
}
.beta {
    color: #6b8431;
}
.released {
    color: green;
}
.not-started {
    color: red;
}
.not-released {
    color: orange;
}
@media screen and (max-width: 986px) {
    .news-box {
        height: 100%;
    }
}
@media screen and (max-width: 550px) {
    .news {
        grid-template-columns: repeat(1,1fr);
    }
    .projects {
        width: 95%;
    }
    .news-box {
        justify-content: space-between;
        height: auto;
    }
    .products {
        grid-template-columns: repeat(1,1fr);
    }
}