@font-face {
    font-family: 'Belanosima';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Belanosima.woff2') format('woff2'),
        url('../fonts/Belanosima.woff') format('woff');
}

@font-face {
    font-family: 'Mukta';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Mukta.woff2') format('woff2'),
        url('../fonts/Mukta.woff') format('woff');
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Custom css */

* {
    box-sizing: border-box;
}

a {
    color: #fff;
    transition: color 0.2s ease;
}

a:hover {
    color: #3e70ff;
}

body {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 100vh;
    width: 100%;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;

    text-align: center;

    background-color: #111;
    color: #fff;

    padding: 0 10px;

}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 15px;

    height: 25vh;

}

main {

    display: flex;
    justify-content: center;
    align-items: center;

    height: 30vh;
}

.logo {
    color: #fff;
    font-family: 'Belanosima', sans-serif;
    font-size: 100px;
}

.logo span {
    color: #3e70ff;
}

.subtitle {
    margin-top: 10px;
    font-size: 20px;
}

.public-ip-container {

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 40px;

    font-family: 'Mukta', sans-serif;

    gap: 5px;

}

.copy-button {
    border: none;
    padding: 10px;
    cursor: pointer;
    background-color: transparent;
    font-size: 25px;
    color: #fff;
    transition: color 0.2s ease;
}

.copy-button:hover {
    color: #3e70ff;
}

footer {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 10px;

    height: 25vh;

    font-size: 20px;

}