@import url('https://fonts.googleapis.com/css?family=Poppins');

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, p1, a{
    font-family: Poppins;
}

.Top1{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(Background.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

.Top2{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(code.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    align-items: center;
}

.links{
    flex: 1;
    text-align: right;
}

.links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.links ul li::after{
    content: '';
    width: 0%;
    height: 3px;
    background: rgb(6, 5, 49);
    display: block;
    margin: auto;
    transition: 0.2s;
}

.links ul li:hover::after{
    width: 100%;
}

.Main{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.Main h1{
    font-size: 62px;
}

.Main h4{
    font-size: 45px;
}

.Main h5{
    font-size: 35px;
}

.Main h6{
    font-size: 25px;
}

.Main a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 10px;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
}

.Main a:hover{
    border: 1px solid rgb(6, 5, 49);
    background: rgb(6, 5, 49);
    transition: 0.3s;
}

nav .fa{
    display: none;
}

nav img{
    width: 100px;
    height: 100px;
}

.Information{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.Information h1{
    font-size: 36px;
    font-weight: 600;
}

.Information h4{
    color: #444;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.Information p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.Rows{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.column{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.4s;
}

.column:hover{
    box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px){
    .Main h1{
        font-size: 20px;
    }
    .links ul li{
        display: block;
    }
    .links{
        position: absolute;
        background: rgb(6, 5, 49);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: .5s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }
}

