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


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

img{
    object-fit: cover;
    object-position: top;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav {
    padding: 20px 250px;
    background-color: rgb(3, 33, 33);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
}

nav .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .title img {
    border-radius: 100px;
    height: 150px;
    box-shadow: 10px;
}

nav .title a {
    font-size: 35px;
    font-weight: 600;
}

nav .nav-links {
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    font-size: 20px;
    font-weight: 400;
}

.main {
    padding: 20px 250px;
}

.main .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.main .hero img {
    max-width: 75vb;
    width: fit-content;
}

.card h1 {
    padding-bottom: 15px;
    font-weight: bold;
}

.card p {
    text-wrap: balance;
    padding-left: 50px;
}

hr {
    margin: 25px 0px;
    color: rgb(3, 33, 33);
}

.button {
    background-color: rgb(3, 33, 33);
    color: white;
    padding: 20px;
    width: 300px;
    text-align: center;
    border-radius: 30px;
    margin: auto;
}

.button a {
    font-size: 24px;
    font-weight: 600;
}

.about {
    margin: auto;
    padding: 20px 400px;
    text-align: center;
}

.about h1 {
    font-size: 48px;
    font-weight: 500;
    padding: 15px;
}

.about p {
    width: 650px;
    margin: auto;
    padding: 15px;
}

.spacer {
    margin: 65px 0px;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
}

footer .socials{
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 20px;
}

footer .socials i{
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .socials i:hover{
    color: #303f9f;
}

footer p{
    font-size: 14px;
}

