/* universal css */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url("./bg.jpg");
    background-size: cover;
    height: 100%;
}

/* home css */
#navbarlist {
    display: flex;
    flex-direction: row;
    width: fit-content;
    margin: 0 auto;
    padding: 0.5rem;
}

.navbaritems {
    margin: 1rem 2rem;
}

#navbar {
    background-color: black;
    position: sticky;
    top: 0;
}

a {
    text-decoration: none;
    color: white;
    padding: 0.5rem;
}

a:hover {
    background-color: white;
    color: black;
    border-radius: 1000px;
}

h1 {
    width: fit-content;
    margin: 0 auto;
    font-size: 3rem;
    font-family: 'Dancing Script', cursive;
    color: aquamarine;
}

p {
    margin: 0 auto;
    padding: 1rem 2rem;
    color: white;
}

/* other css */
#content{
    display: grid;
    grid-template-columns: 6fr 4fr;
}
#textcontainer{
    padding: 2rem;
    height: 50vh;
    margin: auto 1rem;
    align-items: center;
}
#mediacontainer{
    padding: 1rem;
    display: flex;
    height: 90vh;
}
#imagecontainer{
    display: flex;
    align-items: center;
    justify-content: center;
}
#myimage{
    width: 30vw;
    margin: auto 0.1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 10px;
}

#contact-me {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-me h2 {
    margin-top: 2rem;
    font-size: 2rem;
    font-family: 'Dancing Script', cursive;
    color: aquamarine;
}

#contact-me li {
    margin: 2rem;
}

.contactitems {
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.7rem;
    color: white;
}

.contactitems:hover {
    background-color: white;
    color: black;
    border-radius: 1000px;
}

#listcontacts{
    display: flex;
    flex-direction: row;
}

/* footer css */
#footer {
    background-color: beige;
    position: fixed;
    bottom: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    color: black;
}

/* /to remove bullets */
ul {
    list-style-type: none;
}