body{
    margin: 0;
    padding: 0;
    background-color: black;

}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title{
    font-size: 60px;
    color: azure;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.icon {
    color: rgb(233, 224, 224);
    font-size: 30px;
    margin: 10px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.icon:hover {
    transform: scale(1.15) translateY(-4px);
    color: #00e0d1;
    text-shadow: 0 0 4px #00e0d1;
}

a{
    text-decoration: none;
}

img{
    width: 300px;
    height: 300px;
}