/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}


.notice {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: rgb(255, 0, 0);
}

.notice span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
}



/* Header styling */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-family: 'Lobster', cursive;
}

header h1 {
    font-size: 2rem;
}

/* Section Intro */
.intro {
    padding: 10px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.intro h2 {
    font-size: 2rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.intro iframe {
    height: 300px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
} 

button:hover {
    background-color: #555;
}

/* Content Section */
.content {
    display: flex;
    justify-content: space-around;
    margin: 40px 20px;
}

a {
    background-color: white;
    padding: 20px;
    width: 30%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: black;
}

a .card span {
    font-size: 4em;
}

.card {
    text-decoration: none;
}


.card p {
    font-size: 1rem;
}

section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: .8rem;
    font-family: 'Montserrat', sans-serif;

    bottom: 0px;
    width: 100%;
}


/* Information open */
.info p {
    margin: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: white
}

/* Information close */



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
