:root {
    --bg: #111;
    --color: #fff;
    --main-font: 'Inter', sans-serif;
    --second-font: #:
}

* {
    color: var(--color);
    font-family: var(--main-font);
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main,
section {
    width: 90vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

h1 {
    position: absolute;
    bottom: 40%;
    left: 5rem;
    font-size: 6rem;
}

.title {
    cursor: pointer;
    text-decoration: underline brown;
}

p {
    font-family: 'Courier New', monospace;
}

main p {
    font-size: 3rem;
    position: absolute;
    left: 5rem;
    bottom: 15%;
}

img {
    position: absolute;
    height: 90%;
    width: auto;
    top: 0;
    right: 0rem;
}

hr {
    width: 90vw;
}

h2 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    font-size: 5rem;
}

#about p {
    font-size: 3rem;
    position: absolute;
    left: 5rem;
}

#contact p {
    font-size: 3rem;
    position: absolute;
    top: 12rem;
    left: 5rem;
    width: 50%;
}

u {
    text-decoration: brown underline;
}



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


    img {
        height: auto;
        width: 50%;
    }

    h1 {
        font-size: 3rem;
        left: 0;
        top: auto;
        bottom: 40%;
    }

    main p {
        font-size: 2rem;
        left: 0;
        top: auto;
        bottom: 15%;
    }

    h2 {
        font-size: 2.5rem;
        left: 0;
    }

    #about p {
        font-size: 1.9rem;
        left: 0;
    }

    #contact p {
        left: 0;
        width: 90%;
        font-size: 1.5rem;
    }
}

@media screen and (max-width:600px) {
    img {
        width: 80%;
    }

    #about P {
        font-size: 1.8rem;
    }
}