:root {
    --background: #F5F5DC;
    --primary: #BB86FC;
    --accent: #ecbc7c;
    --secondary: #213c45;
}

* {
    margin: 0;
}

button {
    border-radius: 30px;
}

a {
    color: black;
    text-decoration: none;
}

h1 {
    color: black;
}

a:hover {
    border-bottom: 2px solid var(--accent);
}

section {
    font-family: "Poppins";
}


.section_one {
    height: 600px;
    color: black;
    padding: 0 50px 0 50px;

}

.section_one .navigation {
    display: flex;
    width: 500px;
    justify-content: space-around;
    align-items: center;
    color: black;
}

.section_one nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section_one .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 5vh 3vw 5vh 3vw;
}


.section_one .content .content_grid {
    width: 300px;
    height: 300px;
}

.section_one .content .content_grid .border {
    position: absolute;
    margin: 265px 0 0 30px;
    width: 300px;
    z-index: 60;
    height: 50px;
    color: white;
}

.section_one .content .content_grid .border2 {
    position: absolute;
    z-index: 50;
    margin: 250px 0 0 0;
    width: 300px;
    height: 50px;
    background-color: rgba(128, 128, 128, 0.6);
}

.section_one .content .content_grid img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}