:root {
	scroll-behaviour: smooth;
}

body {
    background-color: rgb(9, 22, 6) ;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.row {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}


.first-row {
    background: rgb(0,0,0);
    background: -moz-radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(22,81,5,1) 50%, rgba(0,0,0,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(22,81,5,1) 50%, rgba(0,0,0,1) 100%);
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(22,81,5,1) 50%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);

    height: 110vh;
    width: 100%;
    color: #fff;
    align-items: center;
    text-align: center;
    align-content: center;
    padding: 18% 15% 15% 15%;
    margin: 0;
    overflow: hidden;
}

.h1, h1 {
    font-size: 3.5rem;
    padding-bottom: 23px;
}

.btn-color {
    color: #fff;
    border: 1px solid #fff;
    background-color: rgb(7, 31, 1) ;
}

.btn-color:hover {
    color: rgb(7, 31, 1);
    background-color: #ddd;
}

.second-row {
    background-color: rgb(9, 22, 6);
    color: #fff;
    margin: 0;
    height: 100vh;
    align-items: center;
    text-align: left;
    align-content: center;
    padding: 15% 13%;
    height: 100vh;
    padding-bottom: 50%;
}
 
.login {
    color: rgb(7, 31, 1);
    background-color: #ddd;
    border: 1px solid  white;
    border-radius: 6px;
}

.login:hover {
    border:1px solid #fff;
}

.btn-width {
    width: 6rem;
    text-align: center;
}

.btn-width:last-child {
    margin-left: 10px;
}

.edit {
    text-align: left;
    position: absolute;
    top: 0;
    left: -400px;
    font-size: 10rem;
    opacity: 0.2;
    line-height: 0.9;
    text-shadow: 0 0 216px black;
    z-index: 0;
    color: rgb(0 116 162);
	-webkit-user-select: none;
}

.edit span {
    display: block;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}

.lg-1,
.lg-2,
.lg-3,
.lg-4
{
    width: 216%;
    margin: 0;
    overflow: hidden;
    animation: lg-1 8s linear infinite;
}

.lg-1 {
    animation-delay: 0;
}

.lg-2 {
    animation-delay: 1s;
    position: relative;
    top: -130px;
}
.lg-3 {
    animation-delay: 0.5s;
    position: relative;
    top: -260px;
}

.lg-4 {
    animation-delay: 1s;
    position: relative;
    top: -380px;
}

@keyframes lg-1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(130%);
    }
}

.footer-row {
    height: 42vh;
    margin-top: 18%;
	background: #000;
}


footer {
	margin: 0;
    height: 43vh;
    color: #fff;
    background: #000;
    display: flex;
    flex-direction: column;
}

.footer-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 300px;
}

.f-1 {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 6% ;
    align-items: center;

}


img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.f-1 .brand {
    font-size: 24px;
    margin: 0;
    text-align: center;
}

.f-2 {
    
}

.links {
    display: grid;
    grid-template-rows: 109px;
    grid-template-columns: 200px 200px;
    align-content: center;
    justify-content: center;
    padding: 7% 0 0 0;
    align-items: center;
    gap: 10px;
}

.links a {
    color: #ddd;
    width: 200px;
}

.copyright {
    display: flex;
    text-align: left;
    margin-left: 25%;
    margin-top: 16px;
}

@media screen and (max-width:600px ){
    .first-row {
        padding: 69% 15% 15% 15%;
    }
	
	.edit {
		font-size: 9.5rem;
    background: transparent;
	}

    .lg-1,
    .lg-2,
    .lg-3,
    .lg-4
    {
        width: 100%;
        margin: 0;
        overflow: hidden;
        animation: lg-1 5.5s linear infinite;
        background: transparent;
    }

    .lg-1 {
        animation-delay: 0;
    }
    
    .lg-2 {
        animation-delay: 1s;
        position: relative;
        top: -140px;
    }
    .lg-3 {
        animation-delay: 0.5s;
        position: relative;
        top: -130px;
    }
    
    .lg-4 {
        animation-delay: 1s;
        position: relative;
        top: -260px;
    }

    .sec-2 {
        height: 190vh;
    }
	
	footer {
		height: 46vh;
	}


    .footer-2 {
        flex-direction: column;
    }

    .f-1 {
        padding-top: 42%;
    }

    .links {
        display: flex;
        flex-direction: row;
    }

    .links-1 {
        margin-right: 45px;
    }

    .copyright{
        margin-top: 40px;
        margin-left: 28%;
    }
}