@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
}

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

    body.dark-theme {
    background-image: url('backgroundpic.jpeg');
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }

    body.light-theme {
    background-image: url('backgroundpic.jpeg');
    color: #121215;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    }

    main {
        display: flex;
        flex-direction: column;
        gap: 3.12rem;
    }

    .hero {
        display: flex;
        justify-content: center;
        font-size: 3rem;
        margin-bottom: 50px;
        letter-spacing: 0.625rem;
        font-weight: 900;
        margin: 0;
        padding: 0;
    }

    .menu {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        font-weight: 100;
        margin: 0;
        padding: 0;
    }

    .dark-theme .line {
        width: 100vw;
        background-color: white;
        height: 1px;
    }

    .light-theme .line {
        width: 100vw;
        background-color: #87878c;
        height: 1px;
    }

    .dark-theme a {
        color: white;
        text-decoration: none;
    }

    .light-theme a {
        color:#121215;
        text-decoration: none;
    }
}

@media only screen and (min-width: 801px) {

body {
    max-width: 100%;
    overflow-x: hidden;
}

body.dark-theme {
    background-image: url('backgroundpic.jpeg');
    color: #adadaf;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

main {
    display: flex;
    justify-content: center;
    gap: 3.125rem;
}

.hero {
    font-weight: 900;
    display: flex;
    align-items: center;
    letter-spacing: 0.9375rem; 
    font-size: 4rem;
    margin-left: 1rem;
}

.menu {
    display: flex;
    flex-direction: column;
    font-weight: 100;
    gap: 0.9375rem;
    font-size: 3.375rem;
}

.dark-theme .line {
    width: 0.0625rem;
    background-color: #adadaf;

}

.dark-theme a{
    text-decoration: none;
    color: #adadaf;
}

body.light-theme {
    color: white;
    background-image: url('backgroundpic.jpeg');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.light-theme a {
    color: white;
    text-decoration: none;
}

.light-theme .line {
    width: 0.0625rem;
    background-color: white;
}
}