.logo{
    position: relative;
    width: 100px;
    height: 100px;
    border-top: 15px solid #ea4335;
    border-bottom: 15px solid #4285f4;
    border-left: 15px solid #34a853;
    border-right: 15px solid #fbbc05;
    border-radius: 50%;
    background-color: white;
}
.logo::before{
    content: "";
    position: absolute;
    background-color: #4285f4;
    width: 30px;
    height: 15px;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}
.logo::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0px;
    right: -18px;
    border-top: 48px solid transparent;
    border-right: 48px solid white;
}