body {
    background-color: #f0f8ff;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

nav a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 5px;
}

nav a:hover{
    background-color: #005f73;
    color: #fff;
    transition: background-color 0.5s ease;
    height: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 4px rgba(41, 40, 40, 0.662);
}

h1 {
    text-align: center;
    color: rgb(3, 75, 75);
    text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
}

h2 {
    text-align: center;
}

h3 {
    /* text-align: center; */
    margin-left: 20px;
}

.intro {
    background-color: #ffffff;
    border-radius: 20px;
    height: max-content;
    padding: 20px;
}

.Slogan {
    width: 90%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 2px;
    margin-bottom: 10px;
    margin-left: 50px;
}

img {
    width: 150px;
}

.all {
    height: fit-content;
}

footer {
    text-align: center;
    text-decoration: double;
    font-size: large;
    margin-top: 150px;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    50%{ opacity : 0.6}
    100% { opacity: 1; }
}

@media (max-width: 600px) {
    nav {
        width: 100%;
    }
    .intro, .Slogan {
        width: 100%;
    }
    .slogan-container {
        height: 400px;
    }
}