@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #a855a8;
    --primary-color-dark: #f5f5DC;
    --secondary-color: #f5f5DC;
    --text-dark: beige;
    --text-light: #f5f5DC;
    --extra-light: #faf5ff;
    --max-width: 1200px
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Playfair Display", serif;
    background-image: url(image/lope.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: beige;
    z-index: 90;
}

.nav__content {
    max-width: var(--max-width);
    margin: auto;
    padding: 1, 5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: xx-large;
    font-weight: 600;
    color: darkblue;
    transition: .3s
}

nav .logo a {
    color: darkslateblue;
}

nav .Checkbox {
    display: none;
}

nav input {
    display: none;
}

nav .Checkbox i {
    font-size: 2rem;
    color: darkslateblue;
    cursor: pointer;
}

ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    transition: left 0.3s;
}

ul li a {
    padding: 6px;
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: large;
    color: darkslateblue;
    transition: 0.3s;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

ul li a:hover {
    border-top-color: lightpink;
    border-bottom-color: lightpink;
    color: lightpink;
}

.section {
    background-color: var(--extra-light);
}

.section__container {
    min-height: 100vh;
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.masak {
    justify-content: center;
    padding-top: 100px;
    padding-left: 50px;
}

.lilin_yes {
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    display: flex;

}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle {
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: .5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: beige;

}

.title {
    font-size: 2px;
    font-weight: 600;
    font-size: x-large;
    line-height: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

title span {
    font-weight: 600;
}

.description {
    line-height: 1.5rem;
    color: beige;
    margin-bottom: 2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
}

.aku_yes {
    font-family: "Playfair Display",
        serif;
    color: beige;
    font-size: larger;
    font-style: italic;
    font-weight: 600;
    align-items: right;
}

.cerita {
    text-align: left;
    font-family: "Playfair Display",
        serif;
    font-weight: 600;
    font-style: italic;
    padding-left: 50px;
    color: beige;
}

.ini_ceritanya {
    text-align: left;
    font-family: "Playfair Display",
        serif;
    font-weight: 600;
    font-style: italic;
    padding-left: 50px;
    color: beige;
    padding-top: 10px;
}

.kerja {
    text-align: left;
    font-family: "Playfair Display",
        serif;
    font-weight: 600;
    font-style: italic;
    padding-left: 50px;
    color: beige;
    padding-top: 20px;
}

.kerjaannya {
    text-align: left;
    font-family: "Playfair Display",
        serif;
    font-weight: 600;
    font-style: italic;
    padding-left: 50px;
    color: beige;
    padding-top: 20px;
}

.lilin_ges {
    font-family: "Playfair Display",
        serif;
    color: beige;
    font-size: larger;
    font-weight: 600;
    font-style: italic;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}

.action__btns {
    display: flex;
    gap: 1rem;
}

.action__btns button {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    outline: none;
    border: 2px solid darkslateblue;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}


.row {
    display: flex;
}

.column {
    flex: 50%;
    padding-top: 100px;
    padding-right: 80px;
}

.hire__me {
    background-color: darkslateblue;
    color: #faf5ff;
}

.hire__me:hover {
    background-color: darkslateblue;
}

.Gump {
    color: darkslateblue;
}

.Gump:hover {
    background-color: var(--primary-color-dark);
    color: darkslateblue;
}

.image {
    display: grid;
    place-items: center;
}

.image img {
    width: min(25rem, 90%);
    border-radius: 100%;
}

.baris {
    display: flex;
}

.kolom {
    display: flex;
}

@media (width < 750px) {
    nav .Checkbox {
        display: block;
    }

    ul {
        position: absolute;
        width: 100%;
        height: calc(100vh - 85px);
        left: -100%;
        top: 39px;
        background-color: beige;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
    }

    nav #Check:Checked~ul {
        left: 0;
    }

    ul li a {
        font-size: 1.25rem;
    }

    .section__container {
        padding: 5rem 1rem 5rem 1rem;
        text-align: center;
        grid-template-columns: repeat(1, 1fr);
    }

    .image {
        grid-area: 1/1/2/2;
    }

    .masak {
        grid-area: 1/1/2/3;
    }

    .action__btns {
        margin: auto;
    }
}