@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

html{
    font-family: "Sedan SC", serif;
    color: #fff;
}

body{
    background-image: linear-gradient(-80deg, rgb(4, 81, 196) 0%, rgb(54, 56, 194) 25%, rgb(35, 22, 104) 51%, #961b48 100%);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #fff;
}

a:hover{
    transform: scale(1.06);
    transition: 0.4s;
}

h1, h2{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 10px;
}

p{
    background-color: #1d1e20;
    color: #fff;
}

p:hover{
    color: rgb(247, 148, 130);
}

img{
    max-width: 100%;
    display: block;
}

img:hover{
    opacity: 0.8;
    transition: 0.6s;
}