* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Header1 {
   background-image: url("../Pictures/ICT.webp");  
    background-size: cover;     
    background-position: center; 
    background-repeat: no-repeat;
    height: 400px;
}
.logo {
    width: 100px;
    height: auto;
    position: absolute;

}
.phrase {
    position: absolute;
    top: 24%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(11, 11, 11);
    font-size: 40px;
    text-align: center;
    font-family: Arial, sans-serif;

}

.links {
    display: flex;
    gap: 50px;
    justify-content: center;
    list-style: none;
   
    
}
.links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    position: sticky;
}
.description {
    text-align: center;
    font-size: 20px;
    font-family: Arial, sans-serif;
    margin-top: 200px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.content > div {
    flex: 1 1 220px;
    max-width: 280px;
    min-height: 180px;
    background-color: rgba(70, 126, 216, 0.784);
    box-shadow: 12px 10px 22px 0px #000000;
    border-radius: 10px;
    border: 2px solid black;
    padding: 20px;
    margin: 0 10px;
}
main {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    height: 800px;
}


