body {
    font-family: 'Anek Malayalam', sans-serif;
    background-color: rgb(238,238,238);
    color: black;
    width: 50%;
    margin: auto;
    margin-bottom: 5%;
}

p, ul li {
    font-size: 1.25em;
}

a {
    color: black;
    text-decoration: none;
}

h1:not(#name-info h1) {
    font-size: 2.5em;
    margin-bottom: 2%;
}

section p {
    margin-top: 0;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline 1px;
}

#self {
    border-radius: 100%;
    height: 30%;
    width: 30%;
    border-color: black;
    border-style: solid;
    border-width: 2px;
}

#image-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
}

#name-info {
    margin-left: 3%;
    height: 15%;
}

#name-info h1 {
    font-size: 250%;
    margin-bottom: 0;
}

#email {
    font-size: 150%;
    margin-top: 0;
}

#email a:hover {
    text-decoration: underline;
}

@media(prefers-color-scheme: dark) {
    body {
        background-color: rgb(50,50,50);
        color: white;
    }

    #self {
        border-color: white;
    }

    a {
        color: white;
    }

    footer {
        background-color: rgb(30,30,30);
    }
}