*{
    box-sizing: border-box;
    
}
body {
    background-image: url('img/bg_bubble2.png');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    background-position-y: 5%;

}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    height: 98vh;
    position: relative;

}

.credit{
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
    text-align: center;
    font-size: 11px;
    word-wrap: break-word;
    line-height: 20px;
}

.left {
    width: 40%;
}

h2 {
    color: #001C4C;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative;
    width: fit-content;
}

h2>img {
    width: 60px;
    height: 60px;
}

h2>span{
    position: absolute;
    right: -5%;
    top: 15%;
    font-size: 12px;
}

p {
    color: #8f8f8f;
    line-height: 2rem;
}

.buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 5%;
    
}

button {
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-size: 0.9rem;
    min-width: 150px;
}

.download {
    background-color: #F7F5FF;
    color: #896AFF;
    border: 1px #f2efff solid;

}

.download:hover {
    box-shadow: none;
    transition-duration: 0.6s;
    cursor: pointer;
}

.qrcode {
    background-color: #FFF9EB;
    color: #FF6D20;
    border: 1px #fbf3de solid;
}

.qrcode:hover {
    box-shadow: none;
    transition-duration: 0.6s;
    cursor: pointer;
}

.right {
    width: 40%;
    text-align: center;
}

.right>img {
    width: 100%;
    -webkit-filter: drop-shadow(2px 2px 5px #22222245);
    filter: drop-shadow(2px 2px 5px #22222243);
}

.warning {
    color: #ff7a32;

}

marquee {
    margin: 10px 0px;
    padding: 10px 0px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #001C4C;
    box-shadow: none;
    transition: box-shadow 0.5s ease-in-out; /* Add transition for smooth effect */
}

marquee>span {
    background-color: #ff7a32;
    color: #fff;
    font-weight: 600;
    padding: 10px 8px;
    
}

.universities{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.universities > img {
    width: 120px;
}

.universities > img:nth-child(2){
    width: 140px;
}


@media only screen and (max-width: 480px) {

    body {
        background-attachment: fixed;
        background-position: bottom;
        animation: moveLeftToRight 20s ease infinite;
    }

    .credit{
        display: none;
    }

    .universities{
        gap: 30px;
    }

    h2 {
        font-size: 1.7rem;
    }
    h2>span{
        display: none;
    }

    h2>img {
        width: 40px;
        height: 40px;
    }

    .container {
        height: auto;
        width: 100%;
        flex-direction: column-reverse;
    }

    .left,
    .right {
        width: 95%;

    }

    .right {
        text-align: center;
    }

    .right>img {
        width: 80%;
    }

    .buttons {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {

    body {
        background-attachment: fixed;
    }

    .container {
        height: auto;
        width: 100%;
        flex-direction: column-reverse;
    }
    .credit{
        display: none;
    }

    h2 {
        font-size: 1.8rem;
    }
    h2>span{
        display: none;
    }

    h2>img {
        width: 45px;
        height: 45px;
    }

    .left,
    .right {
        width: 80%;

    }

    .right {
        text-align: center;
    }

    .right>img {
        width: 100%;
    }
}

@keyframes moveLeftToRight {
    0% {
        background-position: bottom left;
    }

    50% {
        background-position: bottom center;
    }

    100% {
        background-position: bottom right;
    }
}

@keyframes addShadow {
    to {
        box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px 0px;
    }
}