*{
    padding: 0;
    margin: 0;
}
body{
    height: 100vh;
    background-color: #2C3E50;
}
header{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 12%;
    padding: 12px;
    background: linear-gradient(to right, #c6e7dc, #ffffff);
    border-bottom: 5px solid rgba(16, 185, 129, 0.18);
}
#foundedByEU-logo{
    height: 12vh;
}
#erasmus-logo{
    margin-top: 1vh;
    height: 10vh;
}
.mainDiv{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 75vh;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    background-color: #fafafa;
    padding-left: 2vw;
    padding-right: 2vw;
}
main > img{
    width: 30vw;
    height: auto;
}
section {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 1.5rem;

    width: 66vw;
    height: 75vh;

    background-color: #fafafa;

    padding: 2rem;

    box-sizing: border-box;
}
footer{
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6vh;
    padding: 16px;
    background-color: #78cfb2;
}
button {
    width: calc(50% - 1.5rem);
    height: 90px;

    font-size: 1.2rem;
    font-weight: 600;

    background: #10b981;
    color: white;

    border: none;
    border-radius: 16px;

    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.18);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.28);
    background: #059669;
}

.project-info {
    max-width: 520px;
    text-align: center;
    padding: 1rem;
}

.project-info h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #10b981;
}

.project-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.8rem;
}