@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

.container {
    margin: 0 auto;
    width: 10000px;
    max-width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    font-size: 1rem;
    padding: 2rem;
    width: 33.3%;
    text-align: center;
}

.col img {
    position: relative;
    max-width: 100%;
}

.col div::after {
    content: "";
    border: 30px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    width: 0;
    height: 0;
}

nav {
    border-bottom: 5px solid white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: center;
    padding: 3rem 0;
}

.logo {
    font-size: 2rem;
}

.logo i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.logo 

button {
    background-color: white;
    border: 0;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 2rem;
}

.green {
    color: #00d69f;
}

.red {
    color: #e75058;
}

.orange {
    color: #d27752;
}

@media screen and (max-width: 700px) {
    nav button {
        display: none;
    }
    nav {
        justify-content: center;
    }
    .col {
        width: 100%;
    }
}