body {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
}

h1 {
    margin: 0px;
}

.title-box {
    flex: 0.2;
    flex-direction: column;
    background-image: url("../assets/images/alcantara_wallpaper_darkgray.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 55%;
    justify-content: center;
}

.title {
    font-family: "Arvo-Regular";
    font-size: 64px;
    color: #FCFCFC;
    margin-left: 20px;
    margin-top: 90px;
}

.subtitle {
    font-family: "Arvo-Regular";
    font-size: 24px;
    color: #FCFCFC;
    margin-left: 20px;
    margin-bottom: 90px;
}

.subtitle-link {
    color: #495DF3;
}

.title-line {
    height: 30px;
    width: 100%;
    background-color: #022C92;
    border-radius: 0 0 100% 100%;
}

.catalog-box {
    display: flex;
    flex: 0.5;
    flex-direction: column;
    background-color: #FAFAFA; 
}

.search-container {
    display: flex;
    flex: 0.2;
    flex-direction: column;
    padding-left: 20px;
    padding-bottom: 20px;
}

.search-title {
    font-family: "NotoSans-Bold";
    font-size: 22px;
    color: #022C92; 
}

.search-bar {
    flex: 0.8;
    height: 24px;
}

.search-input {
    font-family: "NotoSans-Medium";
    border-width: 1px;
    border-color: gray;
    border-radius: 8px;
    width: 540px;
    height: 24px;
}

.search-button {
    background-color: #022C92;
    color: #FCFCFC;
    height: 29px;
    width: 120px;
    border-width: 0px;
    border-radius: 8px;
    transition:
        background-color 0.6s;
}

.search-button:hover {
    background-color: #5D9CE7;
    cursor: pointer;
}

.frame {
    display: flex;
    flex-direction: column;
    flex: 0.8; 
}

.frame-nav {
    display: flex;
    padding-left: 20px;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: none;
    height: 32px;
    border-radius: 8px;
    border: none;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: #022C92;
    font-family: "NotoSans-Medium";
    background-color: #DCDCDC;
    transition:
        background-color 0.6s;
}

.nav-button:hover {
    cursor: pointer;
    background-color: #B6B6B6;
}

.frame-window {
    height: 640px;
    width: none;
    margin: 20px;
    border-width: 1px;
    border-radius: 8px;
    border: solid;
    border-color: #E8E8E8;
}

.info-box {
    display: flex;
    flex: 0.3;
    flex-direction: row;
    background-color: #040d42;
    background-attachment: fixed;
}

.info-column {
    display: flex;
    flex: 0.33;
    flex-direction: column;
    padding-left: 180px;
}

.info-image { 
    padding-left: 60px;
    padding-top: 20px;
}

.info-title {
    font-family: "NotoSans-Medium";
    font-size: 18px;
    color: #FCFCFC;
}

.info-line {
    width: 120px;
    height: 5px;
    background-color: #2351C0;
}

.info-text {
    font-family: "NotoSans-Regular";
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: none;
    margin-right: none;
    padding: none;
    color: #FCFCFC;
}
