@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #FFD1DC;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 50px;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    z-index: 1;
}

header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5em;
    color: #3a2e2e;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

header p {
    font-size: 0.9em;
    color: #5c4b4b;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

header .arrow-down {
    font-size: 1.5em;
    color: #e91e63;
    margin-bottom: 20px;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #FF6B6B;
    color: white;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.link-button .icon {
    margin-right: 15px;
    font-size: 1.3em;
    width: 25px;
    text-align: center;
}

.link-button .text {
    flex-grow: 1;
    text-align: center;
}

.link-button:hover {
    background-color: #e05252;
}

footer {
    margin-top: 30px;
    font-size: 0.8em;
    color: #777;
}

footer a {
    color: #e91e63;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Облака */
.cloud {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M83.62,26.52a12.5,12.5,0,0,0-24.8-4.1A10,10,0,0,0,49,10a10.12,10.12,0,0,0-9.88,7.73,15,15,0,0,0-28.4,6.28c-.09.84-.12,1.68-.12,2.53A17.5,17.5,0,0,0,28.1,44h43.8A16.38,16.38,0,0,0,83.62,26.52Z" fill="%23FFF" opacity="0.8"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.6;
}

.cloud1 {
    width: 200px;
    height: 100px;
    top: 5%;
    right: 10%;
    animation: drift 60s linear infinite alternate;
}

.cloud2 {
    width: 250px;
    height: 125px;
    bottom: 5%;
    left: 5%;
    animation: drift 80s linear infinite alternate;
}

.cloud3 {
    width: 150px;
    height: 75px;
    bottom: 15%;
    right: 15%;
    animation: drift 70s linear infinite alternate-reverse;
}

@keyframes drift {
    from { transform: translateX(-20px); }
    to   { transform: translateX(20px); }
}

@media (max-width: 480px) {
    header h1 { font-size: 2em; }
    header p  { font-size: 0.8em; }
    .link-button {
        font-size: 1em;
        padding: 12px 15px;
    }
    .cloud1 { width: 150px; height: 75px; }
    .cloud2 { width: 200px; height: 100px; }
    .cloud3 { display: none; }
}
