@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

html {
    background-color: rgba(66,69,73);
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgba(66,69,73);
}

img{

    width: 100%;
    display: flex; 

}

.nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

}


.nav-title {
    color: white;
    margin: auto;
    display: flex;
}


.nav-logo {
    margin: auto;
    background-color: rgba(66,69,73);
    max-width: 100px;
    display: flex;
}


.nav-link{
    list-style: none;
    display: flex;
    gap: 2rem;

}

.link a{
    position: relative;
    padding-bottom: 1rem;
    color: white;
    margin: auto;
    
}

.btn a{ 
    color: white;
}

a{
    text-decoration: none;

}

.btn{ 
    padding: 1rem 2rem;
    font-size: 1rem;
    color: white;
    background-color: black;
    border-radius: 5px;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;

}

header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2rem;

}


.content h4{
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;


}

.content h1{
    color: black;
    margin-bottom: 1rem;
}

.content p{
    color: white;
    margin-bottom: 2rem;
}

.image{
    max-width: 600px;
    margin: auto;
    position: relative;
}

.container .nav-logo{
    margin-bottom: 2rem;
    background-color: rgba(66,69,73);
    max-width: 100px;
    display: flex;
    align-items: center;


}

footer{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

footer p{
color: black;
text-align: left   ;
margin-right: 2rem;
}

.column{

    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}
.column h4{
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.column a{

    display: flex;
    color: white;
    margin-bottom: 1rem;
    align-items: flex-end;
}