/**** Font's link **/
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/**** Link for page's colors ****/
@import 'colors.css';
/**** Link for header's css ****/
@import 'header.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit';
}

body {
    height: 100vh;
    min-height: 685px;
    min-width: 410px;
    background: var(--background);
}

main {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lettering-color);
}

main .content {
    max-width: 90vh;
    padding: 15vh 20px;
}

/* H1 */

main .content h1 {
    font-size: 68px;
    line-height: 70px;
    margin-bottom: 50px;
}

main .content h1 span {
    color: var(--main-color);
}

/* H2 */

main .content h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

main .content h2 span {
    color: var(--main-color);
}

/* Paragraph */

main .content p {
    font-size: 16px;
    margin-bottom: 12px;
}

main .content p span{
    color: var(--main-color);
}

/* Main buttons */

main .content .buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

main .content .buttons button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 8px;
}
main .content .buttons a {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
}

/* Linkedin and github buttons */

main .content .buttons .linkedin, .github {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light-lettering-color);
    background: var(--lettering-color);
}

main .content .buttons .linkedin:hover, .github:hover {
    background: var(--main-color);
    cursor: pointer;
}

/* CV button */

main .content .buttons .cv {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    background: var(--light-lettering-color);
}

main .content .buttons .cv:hover {
    color: var(--light-lettering-color);
    background: var(--main-color);
    cursor: pointer;
}





