.wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

.toplanding {
    text-align: center;
    justify-content: center;
    height: 100vh;
    color: rgb(139, 80, 123);
    background-color: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: newFont;
    

}

h1 {
    font-size: 80px;
    font-family: newFont;
    text-align: center;
    line-height: 10px;


}

nav {
    text-align: center;
    position: fixed;
    overflow: visible;
    top: 0px;
    left: 0px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 15px;
    
}

a {
    text-decoration: none;
    color: #8e8e8e;
}


a:visited {
  color: #8e8e8e; 
}

a:hover {
  color: rgb(74, 74, 74);
}


body { 
    background-image: url("../img/backgroundimage.png");
    background-repeat: no-repeat;
    background-size: 98% 100%; 
    background-attachment: fixed;
    background-position-x: center;
    
    


    
}

.stamp {

}

.stamp:hover {
    transform: rotate(5deg);

}

.projects { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: 30px;
    padding: 60px 40px;
    padding-top: 300px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.ending { 
    text-align: center;
    background-color: white;
min-height: 100vh;
    z-index: 10;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    color:rgb(139, 80, 123);
    font-family: newFont;
    width: 1fr;
}


footer { 
    background-color: white;
    width: 100%;
    font-family: myFont;
    color:rgb(139, 80, 123);
    padding:10px;
    display: grid;
    grid-column: 1fr;

}


@font-face {
  font-family: newFont; 
  src: url('../fonts/PPMondwest-Regular.otf'); 
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.masonry {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px; 
    grid-auto-flow: dense;
    


}

.masonry-item {
    width: 95%;
    display: block;
    overflow: hidden;
    padding: 5px ;
}

p {
    text-align: center;
    font-family: newFont;

}

.bsidesheader {
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    padding-top: 50px;


}

.aboutme {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 100px;
    font-size: 20px;
    

}

.center {
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .masonry {
        grid-template-columns: 1fr;
    }
    .projects {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caseheader {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    padding-top: 100px;
    
}
.casecomponents {
   
    padding: 20px;
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;

}