:root { 
    --text-color: #121414;
    --background: #ececec;
}

.darkmode {
    --text-color: #ececec;
    --background: #121414;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: larger;
    overflow: hidden;
    background-color: var(--background);
    color: var(--text-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;   
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 25px; 
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
}

.logo {
    font-size: 30px;
    cursor: pointer;
    color: var(--text-color);
}

.title { 
    font-size: 280px;
    bottom: 0;
    margin-bottom: 5%;
    margin-left: 2%;
    line-height: 80%;
    font-family: "DM Serif Text", serif;
    font-weight: 500;
}

.container {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.desc {
    font-family: "Gowun Dodum", sans-serif;
    max-width: 500px; 
    white-space: nowrap;
    margin-left: 40px;
    padding-top: 15%;
    font-size: 20px;
    font-style: italic;
    font-weight: 100;
}

#theme-switch {
    height: 50px;
    width: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
}

#theme-switch svg{
    fill: var(--text-color);
}

#theme-switch svg:last-child{
    display: none;
}

.darkmode #theme-switch svg:first-child{
    display: none;
}

.darkmode #theme-switch svg:last-child{
    display: block;
}