@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    font-family: 'Special Gothic', sans-serif;
}

body {
    height: 100vh;
    background-image: linear-gradient(to bottom, #049DBF, #0D3973);
    color: white;

}

main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#info-container {
    width: 600px;
    text-align: center;

}

#logo {
    padding-bottom: 40px;
}

#info-card h1 {
    font-size: 2.7em;
}

#info-card {
    display: flex;
    gap: 15px;
    flex-direction: column;
    flex-wrap: nowrap;
}

#info-card p {
    font-size: 24px;
    text-align: center;
}

#info-card ul {
    list-style: none;
  
}

#info-card li {
    display: inline-block;
    margin-right: 10px;
}

#info-card li a {
    color: #ffff;
    text-decoration: none;
    font-weight: bold;
    padding: 6px;
    border-radius: 10px;
}

i {
    color: #fff;
    font-size: 30px;
}

i:hover {
    color: antiquewhite;
} 

@media screen and (max-width: 600px) {
    i:hover {
        color: none;
    }

}