@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
html, body{
    margin: 0;
    background-color: black;
    color: white;
    font-family: "Roboto", sans-serif;
}
header h1{
    font-weight: 700;
    font-style: normal;
}
header p{
    font-style: italic;
}
header{
    padding: 20px;
    text-align: center;
    background-color: #da0000;
}
span{
    color: yellow;
}
footer{
    padding: 20px;
    background-color: #da0000;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
footer h5{
    font-family: "Space Mono", monospace;
}
section, article{
    margin: 40px;
}
.ss{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h3{
    text-align: center;
}
.p{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}
.p img{
    width: 450px;
    opacity: 0.5;
}
a :hover{
    opacity: 1;
    transform: scale(110%);
    transform: rotate(5deg);
    transition: 0.5s ease;
}