html {
    font-size: 45%;
}

body {
    background-image: url("Images/burger_blog.jpg");
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid black;
}

header h1 {
    color: white;
    text-align: center;
    font-size: 2.4rem;
}

.title {
    font-family: 'Berkshire Swash', cursive;
    font-size: 8rem;
}

.main {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid black;
    max-width: 700px;
    padding: 4rem;
    font-size: 2rem;
    margin: 6rem 0;
    color: white;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s;
    height: 500px;
    width: 620px;
}

.center p {
    font-weight: 200;
    font-size: 3.5rem;
}

.center img {
    width: 375px;
    height: 375px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    opacity: 90%;
    border-radius: 50%;
}

img {
    display: block;
    width: 100%;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 2rem;
    gap: 1rem;
}

button {
    color: white;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    border-style: none;
}

.button-nav {
    transition: transform 0.3s;
    padding: 2rem;
    font-size: 3rem;
    background-color: transparent;
    border-bottom: 2px solid transparent;
}

.button-nav.active {
    border-bottom: 2px solid white;
}

.button-nav:hover {
    transform: translateY(-10%);
}

.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    animation: fadeIn 1.5s;
    grid-gap: 4rem;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 300px;
    padding: 1rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: rgba(99, 99, 99, 0.4);
}

.menu-item img {
    width: 40%;
}

.menu-item h2 {
    padding: 0.5rem;
}

.menu-item p {
    font-size: 2rem;
    text-align: center;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s;
}

.contact p {
    width: 100%;
    padding: 0.5rem;
}

.contact img {
    max-height: 420px;
    padding: 0.5rem;
    opacity: 90%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fa-github {
    color: white;
    font-size: 3rem;
}