@font-face {
    font-family: 'ABC Diatype';
    src: url('fonts/ABCDiatype-Regular-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ABC Diatype';
    src: url('fonts/ABCDiatype-Medium-Trial.otf') format('opentype');
    font-weight: 480;
    font-style: normal;
}

@font-face {
    font-family: 'ABC Diatype';
    src: url('fonts/ABCDiatype-Bold-Trial.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ABC Diatype', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #F7F9F9;
    background-image: url("logo20.svg");
    background-repeat: no-repeat;
    background-position: right 10px bottom 80px;
    background-size: 66.67vw auto;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    padding: 1rem;
}

.logo {
    width: 31.7%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

h2 {
    color: #5eeb5b;
    font-size: 34px;
    font-weight: 480;
    line-height: 1.5;
    margin: 0;
}

a {
    position: relative;
    display: inline-block;
    color: #5EEB5B;
    text-decoration: none;
    transition: transform 0.25s ease;
    line-height: 1.5;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

a:hover {
    transform: translateX(15px);
}

a:hover::after {
    transform: scaleX(1);
}

.icon {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    text-align: center;
}

.alert {
    color: rgb(235, 94, 91);
    font-size: 32px;
    font-weight: 700;
}

.button {
    display: inline-block;
    padding: 15px 35px;
    margin-top: 10px;
    background-color: #5eeb5b;
    color: #F7F9F9;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 480;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #5eeb5b;
}

.button:hover {
    background-color: transparent;
    color: #5eeb5b;
    transform: translateY(-3px);

}

.button::after {
    display: none;
}


@media (max-width: 768px) {
    body {
        background-size: 500px auto;
        background-position: right -50px bottom 50px;
    }
    
    .container {
        padding: 1rem;
    }
    
    .logo {
        width: 50%;
        max-width: 250px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .icon {
        width: 1em;
        height: 1em;
        margin-right: 8px;
    }
    
    .alert {
        font-size: 21px;
    }
    
    a:hover {
        transform: translateX(10px);
    }
}
