@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

.developer {
    background-image: url(./Images/developer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

#developer_content {
    padding: 3% 5%;
    color: lightgrey;
    font-family: "Roboto Mono", monospace;
}

.lg_content {
    font-size: 48px;
    font-weight: 500;
}

.Work {
    height: 20vh;
    background-color: darkslategrey;
}

.Work div {
    padding-top: 20px;
    text-align: center;
    color: lightgrey;
    font-family: "Roboto Mono", monospace;
}

.Cards {
    display: flex;
    justify-content: space-evenly;
    margin: 50px auto;
    
}

.Div {
    width: 20rem;
    height: 25rem;
    border-radius: 15px;
    font-family: "Oswald", sans-serif;
    box-shadow: 5px 5px 20px black;
    transition: 0.4s ease-in-out;
}
.Div:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 50px black;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}
.Div .Content {
    margin: 10px 10px;
}

#bottom_div {
    display: flex;
    justify-content: space-around;
}

.Block {
    margin: 50px auto;
    padding: 20px 10px;
    background-color: gray;
    text-align: center;
    width: 500px;
    height: 400px;
    border-radius: 5px 5px 50px 50px;
    box-shadow: 0 20px 50px black;
    font-family: "Oswald", sans-serif;
}
footer {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: black;
    color: whitesmoke;
}

#icons {
    display: flex;
    justify-content: center;
}

.logo {
    width: 2em;
    height: 2em;
    padding: 20px 10px;
    transition: 0.2s ease-in-out;
}
.logo:hover {
    transform: scale(1.3);
    transition: 0.2s ease-in-out;
    cursor: pointer;
}