body {
    background-color: #fafbfd;
    font-family: 'Poppins', sans-serif;
}
.main {
    margin: auto;
}
h1 {
    margin-top: 50px;
    font-size: 40px;
}
button {
    display: inline-block;
    border-radius: 4px;
    background-color: #f46123;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 30px;
    padding: 8px;
    width: 192px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    font-family: 'Poppins', sans-serif;
}
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
.button:hover span {
    padding-right: 25px;
}
.button:hover span:after {
    opacity: 1;
    right: 0;
}
.side {
    display: inline-block;
    vertical-align: -9px;
}
a {
    color: white;
}

#gh {
    background-color: black;
    width: 160px;
}
#lin {
    background-color: #2867b2;
    width: 180px;
}

@media screen and (max-width: 1600px) {
    img {
        width: 530px;
    }
    button {
        width: 155px;
        font-size: 24px;
    }
    #gh {
        width: 135px;
    }
    #lin {
        width: 150px;
    }
}

@media screen and (max-width: 768px) {
    img {
        width: 300px;
    }
    h1 {
        font-size: 25px;
    }
    button {
        width: 110px;
        font-size: 18px;
    }
    #gh {
        width: 100px;
    }
    #lin {
        width: 120px;
    }
}