*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2.5%;
    background: rgba(44, 133, 234, 0.477);
    border-radius: 25px;
}
body{
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;

}
.navlist{
    display: flex;
}
.navlist a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .60s ease;
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.login{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 30px;
}

.programme{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #166bc5 0%, #003d7e 28.53%, #56a8ff 75.52%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
section{
    padding: 0 15%;
}

.programme-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programme-text h1 {
    font-size: 90px;
    line-height: 1;
    color: white;
    margin: -160px 0 45px;
}

.pi,
.ip,
.cps,
.qrcode {
    width: 270px;
    height: 350px;
    background-color: #f0f0f0;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}


.boxes-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pi-text,
.ip-text,
.cps-text {
    font-size: 36px;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
}

.qrcode-text {
    font-size: 20px;
    font-weight: 650;
    color: black;
    margin-bottom: 20px;
    margin-top: 12px;
}


.pi-logo img {
    width: 125px;
    height: auto;
    margin-bottom: 30px;
}

.ip-logo img {
    width: 125px;
    height: auto;
    margin-bottom: 30px;
}

.cps-logo img {
    width: 125px;
    height: auto;
    margin-bottom: 30px;
}

.qrcode-logo img {
    width: 125px;
    height: auto;
    margin-bottom: 30px;
}

.pi-button,
.ip-button,
.cps-button,
.qrcode-button{
    padding: 15px 30px;
    border: none;
    background-color: #4285F4;
    color: white;
    font-size: 16px;
    border-radius: 50px; 
    text-decoration: none; 
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.pi-button:hover,
.ip-button:hover,
.cps-button:hover,
.qrcode-button:hover {
  background-color: #2962ff;
}

@media (max-width: 1584px){
    header{
        padding: 10px 3%;
        transition: .2s;
    }
    .programme-text h1 {
        margin-top: 80px;
    }
}

@media (max-width: 1200px) {
    .programme-text h1 {
        margin-top: 120px;
    }
    .boxes-container {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 1107px){
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 245px;
        height: 300px;
        background: #257edd;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 30px 20px;
        transition: all .55s ease;
        overflow-y: auto;
        border-radius: 20px;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 7px 0;
    }
    .navlist.open{
        right: 0;
    }
}
@media (max-width: 940px) {
    .programme-text h1 {
        margin-top: 100px; 
    }

}
@media (max-width: 640px) {
    .boxes-container {
        flex-direction: column; 
    }
    .programme-text h1 {
        font-size: 60px;
    }
}
@media (max-width: 430px) {
    .programme-text h1 {
        font-size: 40px;
    }
}