@import url('./holder.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
}


h1 {
    font-size: 50px;
    font-weight: 600;
    transition: all .2s ease-out;
}


/* 
h1:hover {
    color: rgb(68, 68, 68);
    padding: 20px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: antiquewhite;
    font-weight: 300;
} */


/* a tag */
a {
    padding: 20px;
    background-color: antiquewhite;
    text-decoration: none;
    font-size: 15px;
    color: black;
    transition: all .3s ease-in;
    border-radius: 10px;
}

a:focus {
    color: red
}

a:hover { 
    background-color: rgb(255, 72, 72);
    color: white;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

/* end of a tag */


.logo-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.logo-text {
    color: rgb(255, 77, 77);
}
/* @media (max-width 7) */