body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;

}
.container{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.contact{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    .email{
        text-decoration: none;
        color: #333;
        font-weight: bold;
        margin: 0 10px;
        transition: color 0.3s;

        &:hover{
            color: #b50045;
        }
    }
     .github{
        text-decoration: none;
        color: #333;
        font-weight: bold;
        margin: 0 10px;
        transition: color 0.3s;

        &:hover{
            color: black;
        }
    }
    .linkedin{
        text-decoration: none;
        color: #333;
        font-weight: bold;
        margin: 0 10px;
        transition: color 0.3s;

        &:hover{
            color: #0077b5;
        }
    }
  
}

b{
    &:hover{
        color: #6c17ff;
        font-size: xx-large;
    }
}