@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;0,800;1,300;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-align: center;
    list-style: none;
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    color: white;
}
:root{
    --accentColor: #000000;
}
body{
    background-image: linear-gradient(45deg,#000000,#222222);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

img{
    margin: 0px 10px;
    margin-top: 30px;
}

a{
    transition: all 0.3s ease;
}

a:hover{
    opacity: 50%;
}
