@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Butcherman&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

a {
    list-style-type: none;
    text-decoration: none;
    color: white;
}

li {
    text-decoration: none;
    list-style: none;
    margin: 12px;
}

/*NAVIGATION*/

.navigation {
    background-image: url(./assets/Dom_BW.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px;
    width: 100%;
    height: 100px;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.personal__logo {
    align-items: center;
    margin: 12px;
}
ul {
    display: flex;
}


.nav__img {
    width: 100%;
}

/*ABOUT*/
#about {
    background-color: #242424;
    height: 100vh;
    padding: 24px 24px;
}

.title {
    font-family: "Butcherman", system-ui;
    font-size: 64px;
    color: white;
}

.about__dom--title {
    display: flex;
    justify-content: center;
}

.about__img--wrapper {
    display: flex;
    justify-content: center;
}

.about__img {
    border-radius: 50%;
}

.about__para {
    color: white;
    font-size: 22px;
}

.about__para--wrapper{
    display: flex;
    justify-content: center;
}

/*PHOTOS*/
#photos {
    background-color: #242424;
    padding: 24px 12px;
}

.photo {
    width: 100%;
    max-width: 500px;
}

.photo__list {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}


.heading {
    color: white;
}

.heading__wrapper {
    display: flex;
    justify-content: center;
    padding: 24px 12px;
}

.photo__container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 16px;
}

.photo__wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

/*EVENTS*/
#events {
   background-color: #242424; 
   height: 100vh;
   color: white;
}

.event__heading {
    display: flex;
    justify-content: center;
    padding: 124px;
}

/*Photo Pages*/

#photo__page {
    background-color: #242424;
    height: 100vh;
    padding: 24px 24px;  
}

.photo__page--container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.photo__page {
    width: 100%;
    
}

.photo__page--large {
    width: 500px;
}

/*Small Phones*/
@media (max-width: 480px) {
    .title {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    }

.about__para {
    font-size: 20px;
    }

    .photo__wrapper {
    width: 100%;
}
}

