@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
    --primary-color: rgb(34, 34, 34);
}

body
{
    background:rgb(240, 237, 237);
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color:var(--primary-color);
}

.header {
    width:100vw;
    height:100%;
    background-size: cover;
    background-position: center;
    color:var(--primary-color);
    display:flex;
    flex-direction:column;
    align-items: center;
}

.header *{
    z-index:1;
}

.home {
    font-weight:100;
    font-size: 35px;
    text-transform:uppercase;
    margin:30px 0 30px;
}

.navbar {
    margin-bottom:50px;
}

.navbar a {
    font-size: 18px;
    color:var(--primary-color);
    padding: 10px;
}

.container{
    display:flex;
    flex-direction: row;
    gap:50px;
    justify-content: space-between;
    align-items: center;
    margin-bottom:120px;
    padding:50px 100px 100px;
}

.about-image {
    width:100%;
    height: 400px;
    object-fit:cover;
    margin:0;
    padding:0;
}

.section {
    color: grey;
    font-size:20px;
    line-height:1.8;
    width:30%;
}

.heading {
    color:var(--primary-color);
    font-size: 30px;
}

/* FOOTER SECTION */
.bottom{
    width:100%;
    height:200px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}

.name {
    text-transform:uppercase;
    font-size: 30px;
    margin-top:90px;
    margin-bottom: 40px;
}

.occupation {
    font-style:italic;
}

.break-line {
    width:20px;
    border: 1px solid black;
    margin: 50px;
}

.email {
    color:black;
    padding-bottom:50px;
}

/* MEDIA QUERIES */
@media(max-width:900px) {
    .container {
        display: block;
    }

    .section {
        margin-top:50px;
        width:100%;
    }
}

@media(max-width:650px) {
    .about-image {
        display:none;
    }
}




