:root {
    --normal-text-color: #0A253C
}

/* Welcome Page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
}

.main-header-left h1{
    font-size: 42px;
    font-weight: 700;
    color: var(--normal-text-color);
    line-height: 3rem;
}

.main-header-left p {
    font-size: 16px;
    font-weight: 400;
    color:var(--normal-text-color);
}

/* End of Welcome Page */

/* Biodata Page */

.wrapper {
    display: block;
    border: 5px solid #000;
    border-radius: 8px;
    height: 400px;
    background:linear-gradient(147deg, #1268B3 0%, #0A253C 100%);
    text-align: center;
    padding: 20px 0;
}

.title-desc {
    margin: 20px 0;
}

.title-desc h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f5f5f5;
}

.title-desc p {
    font-size: 14px;
    font-weight: 300;
    color: #f5f5f5;
    text-align: center;
}

.social-media h3 {
    color: #f5f5f5;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 20px 0;
}

.social-media a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
    margin: 0 20px;
}



@media only screen and (max-width: 600px) {


   .main-header-left {
       margin: 20px auto;
   }

    .main-header-left h1{
        font-size: 24px;
        text-align: center;
    }

    .main-header-left p {
        text-align: center;
    }
}
