*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html
{
    width: 100%;
    height: 100%;
    background-image: url("/assets/ac.jpg") ;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    font-family: 'Port Lligat Sans', sans-serif;
}
a > img
{
    width: 70px;
    height: 70px;
}
a + a
{
    margin-top: 60px;
    margin-right: 5px;
}
.container
{
    height: 100vh;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}
div > h2
{
    color: white;
}
div > h1
{
    color: white;
    font-size: 120px;
}
.about
{
    position: relative;
    justify-content:center;
    align-self: center;
    margin: auto;
    margin-top: 250px;
    margin-left: 200px;
}

.about > img
{
    position: absolute;
    left: 95px;
    top: 192px;
    width: 40px;
    height: 20px;
    z-index: 1;
}

.btn
{
    background-color:red;
    border-radius: 4px;
    margin-top: 10px;
    height: 3.5rem;
    width: 6.5rem;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: ease-out 0.8s;
}

.btn:hover
{
    box-shadow: inset 6.5rem 0 0 0 #2943b9 ;
}

.contact
{
    display: flex;
    flex-direction: column;
    margin-top: 30vh;
    margin-right: 5px;
}

.contact > a
{
    margin: 20px auto;
    color: white;
    position: relative;
    margin-left: 40px;
    text-decoration: none;
    transition: 0.5s;
}

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

    div > h1
{
    color: white;
    font-size: 50px;
}
div > h2
{
    color: white;
    font-size: 15px;
}
.about
{
    position: relative;
    justify-content:center;
    align-self: center;
    margin: auto;
    margin-top: 200px;
    margin-left: 30px;
}
.btn
{
    color: black;
    background-color:red;
    border-radius: 4px;
    margin-top: 10px;
    height: 2.5rem;
    width: 4rem;
    border: none;
    font-size: 10px;
    cursor: pointer;
    transition: ease-out 0.8s;
}
a > img
{
    width: 40px;
    height: 40px;
}
a + a
{
    margin-top: 20px;
    margin-right: 5px;
}
.about > img
{
    position: absolute;
    left: 57px;
    top: 95px;
    width: 40px;
    height: 20px;
    z-index: 1;
}
}

@media only screen and (min-width: 1050px)
{
 .contact > a::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    width: 100%;
    height: 70px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.5s;
}

.contact > a:hover::before
{
    transform: scaleY(1);
    opacity: 1;
}

}
@media only screen and (max-width: 950px) and (min-width: 500px) 
{
    .about
    {
        margin-left: 10%;
    }
    .about > h1 
    {
        font-size: 80px;
    }
    .about > img
{
    position: absolute;
    left: 95px;
    top: 145px;
    width: 40px;
    height: 20px;
    z-index: 1;
}
}

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

    .about > h1
    {
        font-size: 40px;
        margin-top: 20px;
    }
    .about > img
    {
        position: absolute;
        left: 60px;
        top: 102px;
        width: 40px;
        height: 20px;
        z-index: 1;
    }
}
@media only screen and (max-width: 335px)
{
    .about > img
    {
        position: absolute;
        left: 60px;
        top: 145px;
        width: 40px;
        height: 20px;
        z-index: 1;
    }
}