*{
    margin: 0;
    padding: 0;
}
body{
    background-color: beige;
    font-family: cursive;
}
footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    padding: 100px 0 30px;
    background: linear-gradient(to right, #00093c, #2d0b00);
    border-top-left-radius: 50px;
}
footer img:hover{
    transform: translateX(-1px);
}
footer img{
    transition: transform 0.5s;
    transform: translateX(120%);
    cursor: pointer;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}
#pp{
    width: fit-content;
    height: 50px;
    font-size: 14px;
}
.row{
    width: 85%;
    margin: auto;
    display: flex;

}
.col{
    flex-basis: 25%; 
}
.col h3{
    margin-bottom: 30px;
    font-size: 30px;
}
.col h2{
    margin-bottom: 30px;
    font-size: 30px;
}
.col .email{
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 10px;
    text-decoration: underline;
}
ul li a{
    margin-bottom: 50px;
    color: white;
    text-decoration: none;
}
ul li{
    font-size: 17px;
    list-style: none;
    margin-bottom: 10px;
}
.col input{
    background: transparent;
    color: #ccc;
    text-decoration: none;
    outline: none;
    border: 0;
    width: 100%;
    font-size: 18px;
}
.col #news{
    margin-bottom: 40px;
}
form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 2px solid whitesmoke;
    margin-bottom: 50px;
}
form .fa-solid{
    font-size: 25px;
    margin-right: 15px;
}
.social-media .fab:hover{
    transform: rotate(360deg);
}
.social-media .fab{
    padding: 10px;
    margin-right: 10px;
    font-size: 25px;
    border-radius: 50%;
    background-color: whitesmoke;
    color: black;
    cursor: pointer;
    transition: transform 0.9s;
}
.underline{
    background-color: grey;
    width: 100px;
    height: 5px;
    position: relative;
    top: 20px;
    overflow: hidden;
}
span{
    position: absolute;
    top: 0.1px;
    left: 0;
    background-color: white;
    width: 40px;
    height: 5px;
    animation: move 1s linear infinite;
    overflow: hidden;
}
@keyframes move{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}