@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*
{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-weight: 400;
}

.container
{
    z-index: 2;
}

.background
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url(BG.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(2px) brightness(0.5);
}

.logo
{
    font-weight: 500;
    font-size:x-large;
    justify-self: center;
    font-family: 'Playfair Display', serif;
    color: rgb(255, 255, 255);
}

.line
{
    border: 0.5px solid rgba(161, 161, 161, 0.53);
    width: 80vw;
    justify-self: center;
    filter: blur(1px);
    margin-top: 10px
}

.bar
{
    width: 33%;
    border: 2px solid rgb(0, 0, 0);
    position:fixed;
    filter: blur(px);
    animation: move 2s ease-in-out 0s infinite alternate;
}

@keyframes move
    {
        from
        {
            transform: translateX(0)
        }
        to
        {
            transform: translateX(200%)
        };
    }

.container2
{
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-self: center;
}

.heading
{
    margin: 10px;
    font-size: xxx-large;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.subheading
{
    font-size:x-large;
}

.first
{
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-self: center;
    margin-bottom: 10px;
}

.college-image
{
    float: left;
    width: 60%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    margin-right: 10px;
    filter:saturate(1.2) contrast(1.1) brightness(0.9);
}

.logo,
.heading,
.subheading,
.college-image {
  transition: all 0.3s ease;
}

@media screen and (max-width: 600px)
{
    .heading
    {
        font-size: xx-large;
    }
    .college-image 
    {
    width: 100%;
    float: none;
    margin-right: 0;
    }
}


