@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

.body {
    background-image: url("https://img.freepik.com/free-vector/abstract-black-lines-geometric-background_677411-2748.jpg");
    height: 100vh;
    width: 100vw;
    background-size: cover;
    color: white;
    text-align: center;
}

.name {
    font-family: "Comic Sans MS";
    font-size: 20px;
    margin: 10px;

}

.header {
    padding: 20px;
}

.home {
    font-family: "Roboto";
    font-size: 25px;
    text-decoration: underline;
    margin: 10px;
    font-weight: lighter;

}

.button {
    margin-left: 10px;
}

.image {
    height: 70px;
    width: 70px;
    background-color: white;
    border-radius: 20px;
    margin: 20px;
    border-color: white;
    border-style: solid;
    padding: 1px;
    border-width: 1px;
}

.image:hover {
    transform: translate(-5%, -20%);
}

.home1 {
    font-family: "Roboto";
    font-size: 25px;
    margin-top: 100px;
    margin: 10px;
    font-weight: lighter;

}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.custom-shadow {
    box-shadow: 2px 4px 8px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 600px) {

    .name {
        font-family: "Comic Sans MS";
        font-size: 15px;
        margin: 10px;

    }

    .home {
        font-family: "Roboto";
        font-size: 15px;
        text-decoration: underline;
        margin: 10px;
        font-weight: lighter;

    }

    .button {
        margin-left: 10px;
        font-size: 10px;
    }

    .image {
        height: 50px;
        width: 50px;
        background-color: white;
        border-radius: 10px;
        margin: 10px;
        border-color: white;
        border-style: solid;
        padding: 1px;
        border-width: 1px;
    }

    .image:hover {
        transform: translate(-5%, -20%);
    }

    .home1 {
        font-family: "Roboto";
        font-size: 15px;
        text-align: left;
        margin: 10px;
        font-weight: lighter;

    }

    .flex-container {
        display: flex;
        flex-direction: row;
        justify-content: start;
    }



}