@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* line-height: 1; */
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

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

.text_container {
    color: white;
    margin: 0 auto;
    padding-top: 64px;
    padding-left: 16px;
    max-width: 900px;


}

.large_text {
    font-size: 72px;
    font-weight: 400;
}

.black_box {
    background-color: #000;
    padding: 20px;
}

.black_box h2 {
    color: white;
    text-align: center;
    font-size: 72px;
    font-weight: 300;


}

.black_box h2 span {
    font-size: 96px;
    font-weight: 400;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1100px;
    margin: 50px auto;

}

.grid_item {
    display: flex;
    justify-content: center;
    align-items: center;

}

.card {
    max-width: 320px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.2);
    transition: 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.3);
    transition: 0.2s ease-in-out;
}

.card_content {
    padding: 20px;
}

.card_content h3 {
    margin-bottom: 10px;
}

.bottom_section {
    display: flex;
}

.contactme {
    background-color: #515603;
}

.aboutme {
    background-color: #722300;
}

.contactme,
.aboutme {
    min-height: 300px;
    color: white;
    padding: 32px;
}

.contactme h2,
.aboutme h2 {
    font-size: 64px;
    font-weight: 300px;
}

.contactme p,
.aboutme p {
    margin-bottom: 20px;
    margin-top: 20px;



}

footer {
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    color: white;
    padding: 20px;
}