@import url('https://fonts.cdnfonts.com/css/rammetto-one');

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    background-color: #333;
    font-family: 'Rammetto One';
}

@media (max-width: 768px) {
    body {
      text-align: center; /* Aligns text to the center on screens with a maximum width of 768px */
    }
  }

#hero {
    background-color: #F3F4F5;
    color: #333;
    text-align: center;
    padding: 6rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#projects {
    background-color: #333;
    padding-bottom: 0%;
}

#projects #h2 {
    margin: 2rem;
    color: #F3F4F5;
    text-align: center;
}

.project {
    text-decoration: none;
    background-color: #f5f5f5;
    padding: 2rem; 
    border-radius: 10px;
    margin: 2rem;
    margin-bottom: rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.project:hover {
    transform: translateY(-5px);
}

.project h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.project p {
    opacity: 0.8;
}

#hreflink {
    color: black;
    text-decoration: none;
}