body {
    
    background: url('/assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

header h1 {
    font-size: 2.7em;
    margin-top: 1%;
}

main {
    width: 60%;
    margin: auto;
    background: rgba(39, 39, 39, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

a {
    color: #7D7DFF;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #BBB2FF;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
}

p{
    font-size: 18px;
}

img {
    width: 50%;
    border-radius: 5px;
    transition: width 1s ease;
}

img:hover {
    width: 52%;
    transition: 1s;
}


header{
    margin-top: 4%;
}

.navigation-menu{
    margin-top: 3%;
}

@media screen and (max-width: 768px) {
    main {
        width: 90%; 
        border-radius: 0;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0);
    }

    img {
        width: 90%;
    }

    img:hover {
        width: 92%;
    }

    .navigation-menu{
        margin-top: 9%;
    }


}