/*bersihkan halaman dari gaya bawaan browser*/
/*=====CSS RESET=====*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*deklarasi variabel global*/
/*=====ROOT=====*/
:root {
    --primary-color: #050301;
    --text-color: #333;
    --background-color: #f9f9f9;
}
/*menerapkan gaya ke seluruh elemen atau bagian situs web secara bersamaan*/
/*=====GLOBAL=====*/
body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.border{
    border: 0.3rem solid black;
    border-radius: 10px;
    margin-left: 150px;
    margin-right: 150px;
    background-color: antiquewhite;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    margin-left: 2rem;
}

.right-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
}

main {
    padding: 1.5rem;
}

.title {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

.about-me {
    flex: 1;
    text-align: justify;
    margin-right: 1rem;
}

.skills {
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.contact-me {
    flex: 1;
    text-align: left;
}

.logo {
    width: 230px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}