@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@font-face  {
    font-family: 'Myfont';
    src: url('fonts/Coldiac.ttf');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
    color: white;
    text-shadow: 2px 1px 5px black;
}
h3{
    font-family: "Myfont", serif;
}
.three{
    font-family: "Poppins" , sans-serif;
}
.email{
    font-family: "Poppins" , sans-serif;
    text-decoration: none;
}
.email a{
    font-family: "Poppins" , sans-serif;
    color: blue;
    text-shadow: none;
}
body{
    background-color: white;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('bg1.png');
}

