body {
    margin: 0;
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    background-color: #1F1F1F;
    color: #FFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    background-color: #0D0D0D;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    font-family: "Quicksand", sans-serif;
    margin: 0 20px;
    text-decoration: none;
    color: #FFFFFF;
    padding: 10px 20px;
    text-transform: capitalize;
}



.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0px;
}

.div1 { grid-area: 1 / 1 / 3 / 3; 
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
}
.div2 { grid-area: 3 / 1 / 4 / 3; 
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: -10px;
}
.div3 { grid-area: 1 / 3 / 5 / 5; 
    display: flex;
    align-items: flex-end; 
    justify-content: center;
}
.div4 { grid-area: 4 / 1 / 5 / 3; 
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 123px;
    color: #B8AD14;
    margin-left: 150px;
    margin-bottom: 0px;
    margin-top: 0px;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 133px;
    margin-left: 150px;
    margin-bottom: 0px;
    margin-top: -30px;
}

p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-left: 150px;
    margin-bottom: 0px
}
a{
    text-decoration: none;
    color: #FFFFFF;
}
a:hover{
    color: #a59f0c;
    cursor: pointer;
}

img {
    max-width: 70%;
    height: auto; 
    pointer-events: none;
}
i {
    color: #B8AD14;
    margin-right: 15px;
}

hr {
    display: block; 
    height: 2px;
    background-color: #B8AD14;
    border: none;
    border-radius: 2px;
    margin: 0px 10;
    width: 80%;
    max-width: 400px;
    margin-left: 150px;;
}

button {
    height: 50px;
    width: 250px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: black;
    background-color: #B8AD14;
    border: none;
    border-radius: 37px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
button:hover {
    background-color: #a59f0c;
    transform: translateY(-3px);
}

footer {
    background-color: #0D0D0D;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {

    nav {
        padding: 18px 0;
    }

    nav a {
        font-size: 0; 
        position: relative; 
    }


    nav a:nth-child(1)::before {
        content: '\f2c2'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(2)::before {
        content: '\f007'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(3)::before {
        content: '\f1c8'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(4)::before {
        content: '\f0e0'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    
    nav a::before {
        display: block;
        font-size: 24px;
        text-align: center;
        color: #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .parent {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .div1{
            margin-top: 0px;
    }
    .div1 h1 {
        font-size: 60px;
        margin: 0;
    }
    .div1 h2 {
        font-size: 70px;
        margin: 0;
    }
    .div1 hr {
        margin: 10px auto;
        max-width: 240px;
    }

    .div2, .div4 {
        margin-top: 10px;
    }

    .div2 p, .div4 button {
        font-size: 18px;
        margin: 5px 0;
    }

    button {
        width: 180px;
        height: 40px;
        font-size: 18px;
    }
    
    footer {
    background-color: #0D0D0D;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    footer p{
        margin: 0;
        font-size: 12px; 
    }
}
