@import "index.css";

.body1{
    height: 100vh;
    background-color: #000;
    background-image: url('https://i.postimg.cc/mgFzRjd7/cool-mountains-4k-HD-4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* konten */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    background-image: url('https://i.postimg.cc/mgFzRjd7/cool-mountains-4k-HD-4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.content {
    max-width: 850px;
    height: 855px;
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 25px;

}

.section-flex > .image-flex {
    display: flex;
    justify-content: center;
}

.image-container > .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-judul {
    font-size: 40px;
    text-align: center;
    line-height: 1.7cm;
}

.explain-paragraph1 {
    font-size: 17px;
    text-align: justify;
    margin-right: 0.5cm;
    margin-left: 0.5cm;
}

.weather-logo {
    float: right;
    margin-right: 0.5cm;
    margin-left: 0.5cm;
}

.thought-logo {
    float: left;
    margin-right: 0.5cm;
    margin-left: 1.5cm;
    margin-top: 0cm;
}

.f-judul2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0%;
    line-height: 1cm;
}

.f-judul3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0%;
    margin-top: 0.3cm;
    line-height: 0.5cm;
}

.list-kesatu {
    font-size: 17px;
    text-align: justify;
    margin-top: 0.8cm;
    margin-right: 1.5cm;
    margin-left: 0.5cm;
}

button {
    line-height: 1;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 18px;
    height: 35px;
    width: 150px;
}

.first-button {
    background-color: rgb(103, 126, 189);
    color:white;
    box-shadow: 4px 4px 1px rgb(0, 0, 0, .2);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    display: flex;
    margin-top: 0cm;
}

/* Scroll Button */
html{
    scroll-behavior: smooth;
}
.scroll-down{
    height: 50px;
    width: 30px;
    border: 2px solid white;
    position: absolute;
    left: 50%;
    bottom: 20px;
    border-radius: 50px;
    cursor: pointer;
}
.scroll-down::before,
.scroll-down::after{
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    border: 2px solid white;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::after{
    top: 20%;
    animation-delay: .3s;
}
@keyframes scroll-down{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    60%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: 90%;
    }
}

